exchange: fix an attempt to format a list into bytes
authorMatt Harbison <matt_harbison@yahoo.com>
Sat, 07 Dec 2019 22:09:43 -0500
changeset 43839 ea97cd64c500
parent 43838 072b745936f1
child 43840 fb03cd716f50
exchange: fix an attempt to format a list into bytes This goes with 27c6d6f53d46. Differential Revision: https://phab.mercurial-scm.org/D7583
mercurial/exchange.py
--- a/mercurial/exchange.py	Mon Dec 09 09:50:39 2019 -0800
+++ b/mercurial/exchange.py	Sat Dec 07 22:09:43 2019 -0500
@@ -2202,7 +2202,7 @@
     if invalid_includes:
         raise error.Abort(
             _(b"The following includes are not accessible for %s: %s")
-            % (username, invalid_includes)
+            % (username, stringutil.pprint(invalid_includes))
         )
 
     new_args = {}