Skip to content

Commit

Permalink
Make PKG_PATH a raw string
Browse files Browse the repository at this point in the history
  • Loading branch information
calum-chamberlain authored Feb 10, 2020
1 parent 4a097ec commit 3d499a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eqcorrscan/scripts/test_eqcorrscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def check_path_conftest(conftest):
for line in f:
line.rstrip("\n")
if line.startswith("PKG_PATH"):
lines_out.append("PKG_PATH = '{0}'".format(PKG_PATH))
lines_out.append("PKG_PATH = r'{0}'".format(PKG_PATH))
else:
lines_out.append(line)
with open(conftest, "w") as f:
Expand Down

0 comments on commit 3d499a6

Please sign in to comment.