redmine: Update hg patch for redmine 4.2.0

authored by

Stekke and committed by
Aaron Andersen
fd1173ee 11cca39e

+2 -2
+2 -2
pkgs/applications/version-management/redmine/0001-python3.patch
··· 44 44 continue 45 45 - ui.write('<tag revision="%d" node="%s" name="%s"/>\n' 46 46 + ui.write(b'<tag revision="%d" node="%s" name="%s"/>\n' 47 - % (r, _x(node.hex(n)), _x(t))) 47 + % (r, _x(node.hex(n)), _u(t))) 48 48 49 49 def _branches(ui, repo): 50 50 @@ -104,136 +107,148 @@ def _branches(ui, repo): ··· 59 59 if lookup(r, n) in branchheads(t): 60 60 - ui.write('<branch revision="%d" node="%s" name="%s"/>\n' 61 61 + ui.write(b'<branch revision="%d" node="%s" name="%s"/>\n' 62 - % (r, _x(node.hex(n)), _x(t))) 62 + % (r, _x(node.hex(n)), _u(t))) 63 63 64 64 def _manifest(ui, repo, path, rev): 65 65 ctx = _changectx(repo, rev)