Rename Windows argument correctly

This commit is contained in:
Griatch 2018-01-27 10:14:26 +01:00
parent 0d6ff46238
commit fa4c59a662

View file

@ -815,7 +815,7 @@ def start_evennia(pprofiler=False, sprofiler=False):
# Windows requires special care
create_no_window = 0x08000000
Popen(portal_cmd, env=getenv(), bufsize=-1,
createflags=create_no_window)
creationflags=create_no_window)
else:
Popen(portal_cmd, env=getenv(), bufsize=-1)
except Exception as e: