##// END OF EJS Templates
commitextras: fix on Python 3 by using sysstrs for __dict__ ops...
Augie Fackler -
r36437:75c76cee default
parent child Browse files
Show More
@@ -70,7 +70,7 b' def _commit(orig, ui, repo, *pats, **opt'
70
70
71 # This __dict__ logic is needed because the normal
71 # This __dict__ logic is needed because the normal
72 # extension.wrapfunction doesn't seem to work.
72 # extension.wrapfunction doesn't seem to work.
73 repo.__dict__['commit'] = _wrappedcommit
73 repo.__dict__[r'commit'] = _wrappedcommit
74 return orig(ui, repo, *pats, **opts)
74 return orig(ui, repo, *pats, **opts)
75 finally:
75 finally:
76 del repo.__dict__['commit']
76 del repo.__dict__[r'commit']
General Comments 0
You need to be logged in to leave comments. Login now