Skip to content
Permalink
Browse files
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.
@@ -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


0 comments on commit 61a7f72

Please sign in to comment.