##// END OF EJS Templates
convert: catch empty origpaths in svn gettags (issue3941)
Matt Mackall -
r19468:82c51264 stable
parent child Browse files
Show More
@@ -483,6 +483,8 b' class svn_source(converter_source):'
483 483 try:
484 484 for entry in stream:
485 485 origpaths, revnum, author, date, message = entry
486 if not origpaths:
487 origpaths = []
486 488 copies = [(e.copyfrom_path, e.copyfrom_rev, p) for p, e
487 489 in origpaths.iteritems() if e.copyfrom_path]
488 490 # Apply moves/copies from more specific to general
General Comments 0
You need to be logged in to leave comments. Login now