##// END OF EJS Templates
py3: use '%d' to convert integer to bytes...
Pulkit Goyal -
r36341:920bbfb6 default
parent child Browse files
Show More
@@ -4014,7 +4014,7 b' def pull(ui, repo, source="default", **o'
4014 brev = None
4014 brev = None
4015
4015
4016 if checkout:
4016 if checkout:
4017 checkout = str(repo.changelog.rev(checkout))
4017 checkout = "%d" % repo.changelog.rev(checkout)
4018
4018
4019 # order below depends on implementation of
4019 # order below depends on implementation of
4020 # hg.addbranchrevs(). opts['bookmark'] is ignored,
4020 # hg.addbranchrevs(). opts['bookmark'] is ignored,
General Comments 0
You need to be logged in to leave comments. Login now