make sure that environment variables have highest prio

This commit is contained in:
Sarah Hoffmann
2021-01-14 11:12:45 +01:00
parent 1ff8751caa
commit ba13cfd9ff

View File

@@ -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