##// END OF EJS Templates
convert: Fix unbound name error in the subversion backend
Joel Rosdahl -
r6214:0f76c7dc default
parent child Browse files
Show More
@@ -793,8 +793,7 b' class svn_source(converter_source):'
793 793 pass
794 794 except SubversionException, (inst, num):
795 795 if num == svn.core.SVN_ERR_FS_NO_SUCH_REVISION:
796 raise NoSuchRevision(branch=self,
797 revision="Revision number %d" % to_revnum)
796 raise util.Abort('svn: branch has no revision %s' % to_revnum)
798 797 raise
799 798
800 799 def _getfile(self, file, rev):
General Comments 0
You need to be logged in to leave comments. Login now