##// END OF EJS Templates
convert: subversion convert abort on revision not found (issue 3205)
Jesus Espino Garcia -
r15970:9f2ed48f stable
parent child Browse files
Show More
@@ -439,6 +439,8 b' class svn_source(converter_source):'
439 439 if revnum < stop:
440 440 stop = revnum + 1
441 441 self._fetch_revisions(revnum, stop)
442 if rev not in self.commits:
443 raise util.Abort(_('svn: revision %s not found') % revnum)
442 444 commit = self.commits[rev]
443 445 # caller caches the result, so free it here to release memory
444 446 del self.commits[rev]
General Comments 0
You need to be logged in to leave comments. Login now