##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in "sparse"...
marmoute -
r51685:54d3a6dc default
parent child Browse files
Show More
@@ -146,7 +146,7 b' def _setuplog(ui):'
146 revs = revs.filter(ctxmatch)
146 revs = revs.filter(ctxmatch)
147 return revs
147 return revs
148
148
149 extensions.wrapfunction(logcmdutil, b'_initialrevs', _initialrevs)
149 extensions.wrapfunction(logcmdutil, '_initialrevs', _initialrevs)
150
150
151
151
152 def _clonesparsecmd(orig, ui, repo, *args, **opts):
152 def _clonesparsecmd(orig, ui, repo, *args, **opts):
@@ -170,7 +170,7 b' def _clonesparsecmd(orig, ui, repo, *arg'
170 )
170 )
171 return orig(ctx, *args, **kwargs)
171 return orig(ctx, *args, **kwargs)
172
172
173 extensions.wrapfunction(mergemod, b'update', clonesparse)
173 extensions.wrapfunction(mergemod, 'update', clonesparse)
174 return orig(ui, repo, *args, **opts)
174 return orig(ui, repo, *args, **opts)
175
175
176
176
General Comments 0
You need to be logged in to leave comments. Login now