# HG changeset patch # User Matt Harbison # Date 1545106106 18000 # Node ID 70a00a8cd66ec246624ca995b203d49d8ce5e4c6 # Parent c296b8faa926a66d214eb6088af6b0134de0849b py3: byteify tests/pullext.py # skip-blame for b'' prepending diff -r c296b8faa926 -r 70a00a8cd66e tests/pullext.py --- a/tests/pullext.py Mon Dec 17 21:27:37 2018 -0500 +++ b/tests/pullext.py Mon Dec 17 23:08:26 2018 -0500 @@ -32,19 +32,19 @@ features.add(repository.NARROW_REQUIREMENT) def extsetup(ui): - entry = extensions.wrapcommand(commands.table, 'clone', clonecommand) + entry = extensions.wrapcommand(commands.table, b'clone', clonecommand) - hasinclude = any(x[1] == 'include' for x in entry[1]) - hasdepth = any(x[1] == 'depth' for x in entry[1]) + hasinclude = any(x[1] == b'include' for x in entry[1]) + hasdepth = any(x[1] == b'depth' for x in entry[1]) if not hasinclude: - entry[1].append(('', 'include', [], - _('pattern of file/directory to clone'))) - entry[1].append(('', 'exclude', [], - _('pattern of file/directory to not clone'))) + entry[1].append((b'', b'include', [], + _(b'pattern of file/directory to clone'))) + entry[1].append((b'', b'exclude', [], + _(b'pattern of file/directory to not clone'))) if not hasdepth: - entry[1].append(('', 'depth', '', - _('ancestry depth of changesets to fetch'))) + entry[1].append((b'', b'depth', b'', + _(b'ancestry depth of changesets to fetch'))) localrepo.featuresetupfuncs.add(featuresetup)