##// END OF EJS Templates
py3: use util.forcebytestr to convert str to bytes...
Pulkit Goyal -
r36506:724ddf24 default
parent child Browse files
Show More
@@ -2258,6 +2258,7 b' def trypullbundlefromurl(ui, repo, url):'
2258 ui.warn(_('HTTP error fetching bundle: %s\n') %
2258 ui.warn(_('HTTP error fetching bundle: %s\n') %
2259 util.forcebytestr(e))
2259 util.forcebytestr(e))
2260 except urlerr.urlerror as e:
2260 except urlerr.urlerror as e:
2261 ui.warn(_('error fetching bundle: %s\n') % e.reason)
2261 ui.warn(_('error fetching bundle: %s\n') %
2262 util.forcebytestr(e.reason))
2262
2263
2263 return False
2264 return False
General Comments 0
You need to be logged in to leave comments. Login now