redmine: Update hg patch for redmine 4.2.0
This commit is contained in:
parent
11cca39ea9
commit
fd1173ee6a
|
@ -44,7 +44,7 @@
|
||||||
continue
|
continue
|
||||||
- ui.write('<tag revision="%d" node="%s" name="%s"/>\n'
|
- ui.write('<tag revision="%d" node="%s" name="%s"/>\n'
|
||||||
+ ui.write(b'<tag revision="%d" node="%s" name="%s"/>\n'
|
+ ui.write(b'<tag revision="%d" node="%s" name="%s"/>\n'
|
||||||
% (r, _x(node.hex(n)), _x(t)))
|
% (r, _x(node.hex(n)), _u(t)))
|
||||||
|
|
||||||
def _branches(ui, repo):
|
def _branches(ui, repo):
|
||||||
@@ -104,136 +107,148 @@ def _branches(ui, repo):
|
@@ -104,136 +107,148 @@ def _branches(ui, repo):
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
if lookup(r, n) in branchheads(t):
|
if lookup(r, n) in branchheads(t):
|
||||||
- ui.write('<branch revision="%d" node="%s" name="%s"/>\n'
|
- ui.write('<branch revision="%d" node="%s" name="%s"/>\n'
|
||||||
+ ui.write(b'<branch revision="%d" node="%s" name="%s"/>\n'
|
+ ui.write(b'<branch revision="%d" node="%s" name="%s"/>\n'
|
||||||
% (r, _x(node.hex(n)), _x(t)))
|
% (r, _x(node.hex(n)), _u(t)))
|
||||||
|
|
||||||
def _manifest(ui, repo, path, rev):
|
def _manifest(ui, repo, path, rev):
|
||||||
ctx = _changectx(repo, rev)
|
ctx = _changectx(repo, rev)
|
||||||
|
|
Loading…
Reference in New Issue