Skip to content

Commit b628f6d

Browse files
committed
Fix os.environ mishap from e48b12e.
1 parent ee23463 commit b628f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mig/wsgi-bin/migwsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def application(environ, start_response, configuration=None,
240240

241241
# Assign updated environ to LOCAL os.environ for the rest of this session
242242
if _set_os_environ:
243-
os.environ(environ)
243+
os.environ = environ
244244

245245
# NOTE: enable to debug runtime environment to apache error log
246246
# print("DEBUG: python %s" %

0 commit comments

Comments
 (0)