##// END OF EJS Templates
convert: svn: fix fallback directory listing code when importing a submodule
Brendan Cully -
r4770:4526ef8c default
parent child Browse files
Show More
@@ -478,7 +478,7 b' class convert_svn(converter_source):'
478 478 optrev = svn.core.svn_opt_revision_t()
479 479 optrev.kind = svn.core.svn_opt_revision_number
480 480 optrev.value.number = revnum
481 rpath = '/'.join([self.url, path]).strip('/')
481 rpath = '/'.join([self.base, path]).strip('/')
482 482 return ['%s/%s' % (path, x) for x in svn.client.ls(rpath, optrev, True, self.client_ctx).keys()]
483 483
484 484 if hasattr(self, '_find_children_fallback'):
General Comments 0
You need to be logged in to leave comments. Login now