D3612: py3: use pycompat.fsencode() to convert tempfile name to bytes

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Sat May 19 15:40:19 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGca1cf9b3cce7: py3: use pycompat.fsencode() to convert tempfile name to bytes (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3612?vs=8783&id=8817

REVISION DETAIL
  https://phab.mercurial-scm.org/D3612

AFFECTED FILES
  hgext/infinitepush/__init__.py

CHANGE DETAILS

diff --git a/hgext/infinitepush/__init__.py b/hgext/infinitepush/__init__.py
--- a/hgext/infinitepush/__init__.py
+++ b/hgext/infinitepush/__init__.py
@@ -1023,7 +1023,8 @@
 
     bundle = None
     try:  # guards bundle
-        bundlepath = "bundle:%s+%s" % (op.repo.root, bundlefile)
+        bundlepath = "bundle:%s+%s" % (op.repo.root,
+                                       pycompat.fsencode(bundlefile))
         bundle = hg.repository(op.repo.ui, bundlepath)
 
         bookmark = params.get('bookmark')



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list