Skip to content

Commit

Permalink
Fix tcsh test on Mac OS
Browse files Browse the repository at this point in the history
  • Loading branch information
skral committed Mar 4, 2018
1 parent 54a7d41 commit 3b3a4c5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/rezplugins/shell/tcsh.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def escape_string(self, value):
if not txt.startswith("'"):
txt = "'%s'" % txt
else:
txt = txt.replace('\\', '\\\\')
txt = txt.replace('"', '"\\""')
txt = txt.replace('!', '\\!')
txt = '"%s"' % txt
Expand Down

0 comments on commit 3b3a4c5

Please sign in to comment.