##// END OF EJS Templates
py3: don't return the revid as unicode in hgext/convert/subversion.py...
Pulkit Goyal -
r39457:34fe76b3 default
parent child Browse files
Show More
@@ -1270,7 +1270,7 b' class svn_sink(converter_sink, commandli'
1270 1270 self.childmap[parent] = child
1271 1271
1272 1272 def revid(self, rev):
1273 return u"svn:%s@%s" % (self.uuid, rev)
1273 return "svn:%s@%s" % (self.uuid, rev)
1274 1274
1275 1275 def putcommit(self, files, copies, parents, commit, source, revmap, full,
1276 1276 cleanp2):
General Comments 0
You need to be logged in to leave comments. Login now