Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dp-osx
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Jun 23, 2016
2 parents 4be02e3 + a107465 commit bbca532
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions util/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,10 @@ def string_to_file_name(string_value):
r"`": "_", # no subshells
r" -": "_-", # could be mistaken for an argument
r" --": "_--", # could be mistaken for an argument
r">": "]", # no redirect chars
r"<": "[", # no redirect chars
r">": "_", # no redirect chars
r"<": "_", # no redirect chars
r"(": "__", # special character
r")": "__", # special character
r"\\x": "_", # hex char
r"\\o": "_", # octal char
#r"\\u": "", # unicode char
Expand Down

0 comments on commit bbca532

Please sign in to comment.