##// END OF EJS Templates
convert: check for failed svn import in debugsvnlog and abort cleanly...
Mads Kiilerich -
r17053:0e4171fd default
parent child Browse files
Show More
@@ -120,6 +120,10 b' def debugsvnlog(ui, **opts):'
120 120 """Fetch SVN log in a subprocess and channel them back to parent to
121 121 avoid memory collection issues.
122 122 """
123 if svn is None:
124 raise util.Abort(_('debugsvnlog could not load Subversion python '
125 'bindings'))
126
123 127 util.setbinary(sys.stdin)
124 128 util.setbinary(sys.stdout)
125 129 args = decodeargs(sys.stdin.read())
General Comments 0
You need to be logged in to leave comments. Login now