mercurial/util.py
changeset 30329 dadb00a0ec0f
parent 30328 2d996af02fd8
child 30332 318a24b52eeb
--- a/mercurial/util.py	Sun Oct 09 09:03:10 2016 -0400
+++ b/mercurial/util.py	Sun Oct 09 09:00:47 2016 -0400
@@ -2380,7 +2380,7 @@
 
     _safechars = "!~*'()+"
     _safepchars = "/!~*'()+:\\"
-    _matchscheme = remod.compile(r'^[a-zA-Z0-9+.\-]+:').match
+    _matchscheme = remod.compile('^[a-zA-Z0-9+.\\-]+:').match
 
     def __init__(self, path, parsequery=True, parsefragment=True):
         # We slowly chomp away at path until we have only the path left
@@ -2394,7 +2394,7 @@
             path, self.fragment = path.split('#', 1)
 
         # special case for Windows drive letters and UNC paths
-        if hasdriveletter(path) or path.startswith(r'\\'):
+        if hasdriveletter(path) or path.startswith('\\\\'):
             self.path = path
             return