forked from hans/Nominatim
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