##// END OF EJS Templates
convert/svn: handle MissingTool exception from converter_sink class...
Azhagu Selvan SP -
r13479:b14ed169 stable
parent child Browse files
Show More
@@ -70,6 +70,8 b' def convertsink(ui, path, type):'
70 70 return sink(ui, path)
71 71 except NoRepo, inst:
72 72 ui.note(_("convert: %s\n") % inst)
73 except MissingTool, inst:
74 raise util.Abort(_('%s\n') % inst)
73 75 raise util.Abort(_('%s: unknown repository type') % path)
74 76
75 77 class progresssource(object):
General Comments 0
You need to be logged in to leave comments. Login now