diff mercurial/ui.py @ 40226:0d403e9f049a

py3: use stringutil.pprint() instead of '%r' This makes test-pager-legacy.t pass on Python 3. Differential Revision: https://phab.mercurial-scm.org/D5037
author Pulkit Goyal <pulkit@yandex-team.ru>
date Sat, 13 Oct 2018 04:54:35 +0300
parents a9f56e4501c1
children 8239d4e5d05f 3c4b9dace7de
line wrap: on
line diff
--- a/mercurial/ui.py	Sat Oct 13 04:51:09 2018 +0300
+++ b/mercurial/ui.py	Sat Oct 13 04:54:35 2018 +0300
@@ -1076,7 +1076,8 @@
             if name not in encoding.environ:
                 pagerenv[name] = value
 
-        self.debug('starting pager for command %r\n' % command)
+        self.debug('starting pager for command %s\n' %
+                   stringutil.pprint(command))
         self.flush()
 
         wasformatted = self.formatted()