Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove '\n' character at the end of env variables
Causing issues when running on windows as paths are not recognized by the system
  • Loading branch information
jbluteau committed Jul 10, 2018
1 parent cf73522 commit c73a823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/__init__.py
Expand Up @@ -59,7 +59,7 @@ def setupenv():
for line in f:
linedata = line.split("=")
name = linedata[0]
data = linedata[1]
data = linedata[1].rstrip()
os.environ[name] = data


Expand Down

0 comments on commit c73a823

Please sign in to comment.