mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
make sure that environment variables have highest prio
This commit is contained in:
@@ -32,7 +32,7 @@ class Configuration:
|
||||
""" Return a copy of the OS environment with the Nominatim configuration
|
||||
merged in.
|
||||
"""
|
||||
env = dict(os.environ)
|
||||
env.update(self._config)
|
||||
env = dict(self._config)
|
||||
env.update(os.environ)
|
||||
|
||||
return env
|
||||
|
||||
Reference in New Issue
Block a user