forked from platypush/platypush
Always cast environment variable values to string
This commit is contained in:
parent
2f1cea99fa
commit
7fb53ead59
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ class Config(object):
|
|||
|
||||
if 'environment' in self._config:
|
||||
for k,v in self._config['environment']:
|
||||
os.environ[k] = v
|
||||
os.environ[k] = str(v)
|
||||
|
||||
self.backends = {}
|
||||
self.plugins = {}
|
||||
|
|
Loading…
Reference in a new issue