##// END OF EJS Templates
tests: add missing b prefixes in remotefilelog-getflogheads.py...
Augie Fackler -
r41289:29996f6c default
parent child Browse files
Show More
@@ -9,9 +9,9 b' from mercurial import ('
9 9 cmdtable = {}
10 10 command = registrar.command(cmdtable)
11 11
12 @command('getflogheads',
12 @command(b'getflogheads',
13 13 [],
14 'path')
14 b'path')
15 15 def getflogheads(ui, repo, path):
16 16 """
17 17 Extension printing a remotefilelog's heads
@@ -19,13 +19,13 b' def getflogheads(ui, repo, path):'
19 19 Used for testing purpose
20 20 """
21 21
22 dest = repo.ui.expandpath('default')
22 dest = repo.ui.expandpath(b'default')
23 23 peer = hg.peer(repo, {}, dest)
24 24
25 25 flogheads = peer.x_rfl_getflogheads(path)
26 26
27 27 if flogheads:
28 28 for head in flogheads:
29 ui.write(head + '\n')
29 ui.write(head + b'\n')
30 30 else:
31 ui.write(_('EMPTY\n'))
31 ui.write(_(b'EMPTY\n'))
General Comments 0
You need to be logged in to leave comments. Login now