Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #7390 from jbluteau/patch-1
Remove '\n' character at the end of env variables
  • Loading branch information
m-kuhn committed Jul 10, 2018
2 parents cf73522 + c73a823 commit 61a7f72
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 61a7f72

Please sign in to comment.