##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in the "git" extension...
marmoute -
r51672:39eb3aab default
parent child Browse files
Show More
@@ -342,8 +342,8 b' def _featuresetup(ui, supported):'
342
342
343
343
344 def extsetup(ui):
344 def extsetup(ui):
345 extensions.wrapfunction(localrepo, b'makestore', _makestore)
345 extensions.wrapfunction(localrepo, 'makestore', _makestore)
346 extensions.wrapfunction(localrepo, b'makefilestorage', _makefilestorage)
346 extensions.wrapfunction(localrepo, 'makefilestorage', _makefilestorage)
347 # Inject --git flag for `hg init`
347 # Inject --git flag for `hg init`
348 entry = extensions.wrapcommand(commands.table, b'init', init)
348 entry = extensions.wrapcommand(commands.table, b'init', init)
349 entry[1].extend(
349 entry[1].extend(
@@ -47,7 +47,7 b' def readpatternfile(orig, filepath, warn'
47 return result, warnings
47 return result, warnings
48
48
49
49
50 extensions.wrapfunction(matchmod, b'readpatternfile', readpatternfile)
50 extensions.wrapfunction(matchmod, 'readpatternfile', readpatternfile)
51
51
52
52
53 _STATUS_MAP = {}
53 _STATUS_MAP = {}
General Comments 0
You need to be logged in to leave comments. Login now