Submitter | Augie Fackler |
---|---|
Date | Aug. 22, 2017, 9:27 p.m. |
Message ID | <536b3969d2242224898f.1503437272@imladris.local> |
Download | mbox | patch |
Permalink | /patch/23215/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/contrib/undumprevlog b/contrib/undumprevlog --- a/contrib/undumprevlog +++ b/contrib/undumprevlog @@ -3,7 +3,7 @@ # $ hg init # $ undumprevlog < repo.dump -from __future__ import absolute_import +from __future__ import absolute_import, print_function import sys from mercurial import ( @@ -27,7 +27,7 @@ while True: if l.startswith("file:"): f = l[6:-1] r = revlog.revlog(opener, f) - print f + print(f) elif l.startswith("node:"): n = node.bin(l[6:-1]) elif l.startswith("linkrev:"):