D2498: py3: use util.forcebytestr to convert str to bytes
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Thu Mar 1 13:40:23 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG724ddf2444a7: py3: use util.forcebytestr to convert str to bytes (authored by pulkit, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2498?vs=6244&id=6245
REVISION DETAIL
https://phab.mercurial-scm.org/D2498
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
@@ -2258,6 +2258,7 @@
ui.warn(_('HTTP error fetching bundle: %s\n') %
util.forcebytestr(e))
except urlerr.urlerror as e:
- ui.warn(_('error fetching bundle: %s\n') % e.reason)
+ ui.warn(_('error fetching bundle: %s\n') %
+ util.forcebytestr(e.reason))
return False
To: pulkit, #hg-reviewers, yuja
Cc: yuja, mercurial-devel
More information about the Mercurial-devel
mailing list