##// END OF EJS Templates
py3: use stringutil.forcebytestr() instead of str()...
Pulkit Goyal -
r37681:fc114a16 default
parent child Browse files
Show More
@@ -2291,7 +2291,7 b' def filterclonebundleentries(repo, entri'
2291 continue
2291 continue
2292
2292
2293 except error.InvalidBundleSpecification as e:
2293 except error.InvalidBundleSpecification as e:
2294 repo.ui.debug(str(e) + '\n')
2294 repo.ui.debug(stringutil.forcebytestr(e) + '\n')
2295 continue
2295 continue
2296 except error.UnsupportedBundleSpecification as e:
2296 except error.UnsupportedBundleSpecification as e:
2297 repo.ui.debug('filtering %s because unsupported bundle '
2297 repo.ui.debug('filtering %s because unsupported bundle '
General Comments 0
You need to be logged in to leave comments. Login now