Skip to content
Snippets Groups Projects
Commit a7c0dfd5 authored by Martin Craig's avatar Martin Craig Committed by Paul McCarthy
Browse files

Remove debugging code in Windows->linux path conversion!

parent 09c438ea
No related branches found
No related tags found
No related merge requests found
...@@ -402,10 +402,6 @@ def wslpath(patharg): ...@@ -402,10 +402,6 @@ def wslpath(patharg):
""" """
match = re.match("^(--[\w-]+=)?([a-zA-z]):(.+)$", path) match = re.match("^(--[\w-]+=)?([a-zA-z]):(.+)$", path)
if match: if match:
print(match)
print(match.group(1))
print(match.group(2))
print(match.group(3))
arg, drive, path = match.group(1, 2, 3) arg, drive, path = match.group(1, 2, 3)
if arg is None: if arg is None:
arg = "" arg = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment