Skip to content
Snippets Groups Projects
Commit 82c51264 authored by Matt Mackall's avatar Matt Mackall
Browse files

convert: catch empty origpaths in svn gettags (issue3941)

parent 1afe5d39
No related branches found
No related tags found
No related merge requests found
......@@ -483,6 +483,8 @@
try:
for entry in stream:
origpaths, revnum, author, date, message = entry
if not origpaths:
origpaths = []
copies = [(e.copyfrom_path, e.copyfrom_rev, p) for p, e
in origpaths.iteritems() if e.copyfrom_path]
# Apply moves/copies from more specific to general
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment