Mercurial > hg
changeset 30329:dadb00a0ec0f
util: use '\\' rather than using r'\'
We need bytes, and I find this just a little more immediately obvious
than doing rb'\'.
author | Augie Fackler <augie@google.com> |
---|---|
date | Sun, 09 Oct 2016 09:00:47 -0400 |
parents | 2d996af02fd8 |
children | a2f2f694dce9 |
files | mercurial/util.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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