Submitter | Pulkit Goyal |
---|---|
Date | May 4, 2017, 10:46 p.m. |
Message ID | <48c75bcbe8a3a4cc7e49.1493938010@pulkit-goyal> |
Download | mbox | patch |
Permalink | /patch/20444/ |
State | Accepted |
Headers | show |
Comments
Patch
diff -r 2dac09b43b78 -r 48c75bcbe8a3 mercurial/dispatch.py --- a/mercurial/dispatch.py Thu May 04 00:24:21 2017 +0530 +++ b/mercurial/dispatch.py Thu May 04 00:44:53 2017 +0530 @@ -479,7 +479,8 @@ return aliasargs(self.fn, args) def __getattr__(self, name): - adefaults = {'norepo': True, 'optionalrepo': False, 'inferrepo': False} + adefaults = {r'norepo': True, + r'optionalrepo': False, r'inferrepo': False} if name not in adefaults: raise AttributeError(name) if self.badalias or util.safehasattr(self, 'shell'):