diff hgext/convert/convcmd.py @ 35197:bfd072c52e03

py3: use bytes in place of basestring All strings in mercurial must be bytes so we can easily replace basestring with bytes. Differential Revision: https://phab.mercurial-scm.org/D1555
author Pulkit Goyal <7895pulkit@gmail.com>
date Fri, 01 Dec 2017 16:53:55 +0530
parents 9700cb9df140
children eefabd9ed3e1
line wrap: on
line diff
--- a/hgext/convert/convcmd.py	Fri Dec 01 14:13:55 2017 -0800
+++ b/hgext/convert/convcmd.py	Fri Dec 01 16:53:55 2017 +0530
@@ -450,7 +450,7 @@
         commit = self.commitcache[rev]
         full = self.opts.get('full')
         changes = self.source.getchanges(rev, full)
-        if isinstance(changes, basestring):
+        if isinstance(changes, bytes):
             if changes == SKIPREV:
                 dest = SKIPREV
             else: