##// END OF EJS Templates
py3: use pycompat.bytestr() instead of str() in extensions.py...
Pulkit Goyal -
r38040:9d44c71b default
parent child Browse files
Show More
@@ -727,7 +727,7 b' def moduleversion(module):'
727 else:
727 else:
728 version = ''
728 version = ''
729 if isinstance(version, (list, tuple)):
729 if isinstance(version, (list, tuple)):
730 version = '.'.join(str(o) for o in version)
730 version = '.'.join(pycompat.bytestr(o) for o in version)
731 return version
731 return version
732
732
733 def ismoduleinternal(module):
733 def ismoduleinternal(module):
General Comments 0
You need to be logged in to leave comments. Login now