support ~ paths

This commit is contained in:
ed 2021-04-11 17:36:38 +02:00
parent a2657887cc
commit 1034a51bd2
2 changed files with 2 additions and 7 deletions

1
.vscode/launch.py vendored
View file

@ -16,6 +16,7 @@ with open(".vscode/launch.json", "r") as f:
oj = jstyleson.loads(tj)
argv = oj["configurations"][0]["args"]
argv = [os.path.expanduser(x) if x.startswith("~") else x for x in argv]
try:
copyparty(argv)
except SystemExit as ex: