Skip to content

Commit

Permalink
Fix missing right parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi committed Oct 1, 2021
1 parent 88ebbe5 commit 0772c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/grass/script/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def split(s):
return list: cmd list
"""
if sys.platform == "win32":
return shlex.split(s.replace("\\", r"\\")
return shlex.split(s.replace("\\", r"\\"))
else:
return shlex.split(s)

Expand Down

0 comments on commit 0772c39

Please sign in to comment.