Skip to content
Snippets Groups Projects
Commit 80a67500 authored by Craig Tiller's avatar Craig Tiller
Browse files

debug

parent a9cc625b
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,8 @@ _MAX_RESULT_SIZE = 8192 ...@@ -52,6 +52,8 @@ _MAX_RESULT_SIZE = 8192
def sanitized_environment(env): def sanitized_environment(env):
sanitized = {} sanitized = {}
for key, value in env.items(): for key, value in env.items():
print(key)
print(value)
sanitized[str(key).encode()] = str(value).encode() sanitized[str(key).encode()] = str(value).encode()
return sanitized return sanitized
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment