D2458: py3: use bytes instead of str in isinstance

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Mon Feb 26 08:13:03 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG745b0df08514: py3: use bytes instead of str in isinstance (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2458?vs=6113&id=6126

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

AFFECTED FILES
  mercurial/archival.py

CHANGE DETAILS

diff --git a/mercurial/archival.py b/mercurial/archival.py
--- a/mercurial/archival.py
+++ b/mercurial/archival.py
@@ -38,7 +38,7 @@
     if prefix:
         prefix = util.normpath(prefix)
     else:
-        if not isinstance(dest, str):
+        if not isinstance(dest, bytes):
             raise ValueError('dest must be string if no prefix')
         prefix = os.path.basename(dest)
         lower = prefix.lower()



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


More information about the Mercurial-devel mailing list