Skip to content

Commit

Permalink
Set interpolate parameter default to False
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Aug 30, 2023
1 parent 22a88b6 commit 96ffc55
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ All notable changes to this project will be documented in this file.
The format is inspired by `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

`v0.12.0`_ - 00-Unreleased-2023
`v0.11.1`_ - 30-August-2023
-------------------------------

Fixed
+++++
- Set ``interpolate`` parameter default to ``False``.


`v0.11.0`_ - 30-August-2023
Expand Down
2 changes: 1 addition & 1 deletion environ/environ.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class Env:
VAR = re.compile(r'(?<!\\)\$\{?(?P<name>[A-Z_][0-9A-Z_]*)}?',
re.IGNORECASE)

def __init__(self, interpolate=True, **scheme):
def __init__(self, interpolate=False, **scheme):
self._local = threading.local()
self.smart_cast = True
self.escape_proxy = False
Expand Down

0 comments on commit 96ffc55

Please sign in to comment.