##// END OF EJS Templates
py3: use `%d` for int in % formatting...
Manuel Jacob -
r45496:d545b895 stable
parent child Browse files
Show More
@@ -917,12 +917,12 b' class svn_source(converter_source):'
917 if not copyfrom_path:
917 if not copyfrom_path:
918 continue
918 continue
919 self.ui.debug(
919 self.ui.debug(
920 b"copied to %s from %s@%s\n"
920 b"copied to %s from %s@%d\n"
921 % (entrypath, copyfrom_path, ent.copyfrom_rev)
921 % (entrypath, copyfrom_path, ent.copyfrom_rev)
922 )
922 )
923 copies[self.recode(entrypath)] = self.recode(copyfrom_path)
923 copies[self.recode(entrypath)] = self.recode(copyfrom_path)
924 elif kind == 0: # gone, but had better be a deleted *file*
924 elif kind == 0: # gone, but had better be a deleted *file*
925 self.ui.debug(b"gone from %s\n" % ent.copyfrom_rev)
925 self.ui.debug(b"gone from %d\n" % ent.copyfrom_rev)
926 pmodule, prevnum = revsplit(parents[0])[1:]
926 pmodule, prevnum = revsplit(parents[0])[1:]
927 parentpath = pmodule + b"/" + entrypath
927 parentpath = pmodule + b"/" + entrypath
928 fromkind = self._checkpath(entrypath, prevnum, pmodule)
928 fromkind = self._checkpath(entrypath, prevnum, pmodule)
General Comments 0
You need to be logged in to leave comments. Login now