diff mercurial/hg.py @ 31841:9ff5a124d111

py3: replace str() with bytes()
author Pulkit Goyal <7895pulkit@gmail.com>
date Fri, 07 Apr 2017 13:46:35 +0530
parents 2545ee88a57e
children 448ed4d3ee90
line wrap: on
line diff
--- a/mercurial/hg.py	Fri Apr 07 11:02:43 2017 -0700
+++ b/mercurial/hg.py	Fri Apr 07 13:46:35 2017 +0530
@@ -103,7 +103,7 @@
     if u.fragment:
         branch = u.fragment
         u.fragment = None
-    return str(u), (branch, branches or [])
+    return bytes(u), (branch, branches or [])
 
 schemes = {
     'bundle': bundlerepo,