D7583: exchange: fix an attempt to format a list into bytes

mharbison72 (Matt Harbison) phabricator at mercurial-scm.org
Tue Dec 10 10:45:20 EST 2019


Closed by commit rHGea97cd64c500: exchange: fix an attempt to format a list into bytes (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7583?vs=18548&id=18572

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7583/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7583

AFFECTED FILES
  mercurial/exchange.py

CHANGE DETAILS

diff --git a/mercurial/exchange.py b/mercurial/exchange.py
--- a/mercurial/exchange.py
+++ b/mercurial/exchange.py
@@ -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 = {}



To: mharbison72, #hg-reviewers, dlax, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list