# HG changeset patch # User Augie Fackler # Date 2017-08-22 16:58:51 # Node ID 5d9890d8ca77beec0654f80dd726fcbdb4ae9d91 # Parent 9e8b01d0654f10e074bc0e673217b1cde2bf99a5 undumprevlog: update to valid Python 3 syntax I didn't do anything to ensure correctness here, just enough to avoid tracebacks in the import checker, which uses the native ast module to try and parse all our Python files. 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:"):