##// END OF EJS Templates
remotefilelog: use the right expandpath in to expand `~`...
marmoute -
r47707:c1749dd3 default
parent child Browse files
Show More
@@ -888,7 +888,7 b' def gcclient(ui, cachepath):'
888 progress.update(count)
888 progress.update(count)
889 count += 1
889 count += 1
890 try:
890 try:
891 path = ui.expandpath(os.path.normpath(path))
891 path = util.expandpath(os.path.normpath(path))
892 except TypeError as e:
892 except TypeError as e:
893 ui.warn(_(b"warning: malformed path: %r:%s\n") % (path, e))
893 ui.warn(_(b"warning: malformed path: %r:%s\n") % (path, e))
894 traceback.print_exc()
894 traceback.print_exc()
General Comments 0
You need to be logged in to leave comments. Login now