##// END OF EJS Templates
py3: use pycompat.fsencode() to convert tempfile name to bytes...
Pulkit Goyal -
r38099:ca1cf9b3 default
parent child Browse files
Show More
@@ -1023,7 +1023,8 b' def storebundle(op, params, bundlefile):'
1023
1023
1024 bundle = None
1024 bundle = None
1025 try: # guards bundle
1025 try: # guards bundle
1026 bundlepath = "bundle:%s+%s" % (op.repo.root, bundlefile)
1026 bundlepath = "bundle:%s+%s" % (op.repo.root,
1027 pycompat.fsencode(bundlefile))
1027 bundle = hg.repository(op.repo.ui, bundlepath)
1028 bundle = hg.repository(op.repo.ui, bundlepath)
1028
1029
1029 bookmark = params.get('bookmark')
1030 bookmark = params.get('bookmark')
General Comments 0
You need to be logged in to leave comments. Login now