Skip to content

Commit

Permalink
Merge pull request ptresearch#9 from amatus/for-upstream
Browse files Browse the repository at this point in the history
[config_decryptor] Support Linux paths
  • Loading branch information
h0t authored Oct 13, 2019
2 parents 5e45407 + c62a15d commit d965e0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config_decryptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def decrypt_path(name):
decChar = ord('?')
elif c == '-':
decChar = ord('>')
elif c == '\\' or c == '.':
elif c == '\\' or c == '/' or c == '.':
decryptName += c
counter = 0
continue
Expand Down

0 comments on commit d965e0c

Please sign in to comment.