D2533: py3: use pycompat.bytestr() to convert None to bytes
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Fri Mar 2 01:13:10 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG32b3d050d997: py3: use pycompat.bytestr() to convert None to bytes (authored by pulkit, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2533?vs=6312&id=6314
REVISION DETAIL
https://phab.mercurial-scm.org/D2533
AFFECTED FILES
mercurial/localrepo.py
CHANGE DETAILS
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -191,7 +191,9 @@
def debugwireargs(self, one, two, three=None, four=None, five=None):
"""Used to test argument passing over the wire"""
- return "%s %s %s %s %s" % (one, two, three, four, five)
+ return "%s %s %s %s %s" % (one, two, pycompat.bytestr(three),
+ pycompat.bytestr(four),
+ pycompat.bytestr(five))
def getbundle(self, source, heads=None, common=None, bundlecaps=None,
**kwargs):
@@ -2231,7 +2233,9 @@
def debugwireargs(self, one, two, three=None, four=None, five=None):
'''used to test argument passing over the wire'''
- return "%s %s %s %s %s" % (one, two, three, four, five)
+ return "%s %s %s %s %s" % (one, two, pycompat.bytestr(three),
+ pycompat.bytestr(four),
+ pycompat.bytestr(five))
def savecommitmessage(self, text):
fp = self.vfs('last-message.txt', 'wb')
To: pulkit, #hg-reviewers, durin42
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list