Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
anderslanglands committed Jul 9, 2022
1 parent 0a9f169 commit 03257cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rezplugins/shell/_utils/powershell_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def escape_string(self, value, is_path=False):

def normalize_path(self, path):
# CMake requires forward slashes and powershell handles them fine
return path.replace('\\\\', '/').repace('\\', '/')
return path.replace('\\\\', '/').replace('\\', '/')

def _saferefenv(self, key):
pass
Expand Down

0 comments on commit 03257cb

Please sign in to comment.