Skip to content

Commit

Permalink
[config_decryptor] Support Linux paths
Browse files Browse the repository at this point in the history
  • Loading branch information
amatus committed May 29, 2019
1 parent ddc5fcc commit c62a15d
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 c62a15d

Please sign in to comment.