Bugfix, The value None was being set instead of an empty string when no

environment variables are defined.
This commit is contained in:
Ferdi Franceschini
2013-05-17 04:36:51 +10:00
parent 650ac39f35
commit 58caa19668

View File

@ -47,7 +47,7 @@ def start_cmd(server, args):
else:
soffset = ''
sicsenv = {
'none': None,
'none': '',
'fullsim': 'SICS_SIMULATION=full%s' % soffset,
'fakedev': 'SICS_SIMULATION=fakedev%s' % soffset,
'scriptval': 'SICS_SIMULATION=script_validator%s' % soffset