##// END OF EJS Templates
convert: have debugsvnlog obtain standard streams from ui...
Yuya Nishihara -
r30261:6bed17ba default
parent child Browse files
Show More
@@ -5,7 +5,6 b' from __future__ import absolute_import'
5
5
6 import os
6 import os
7 import re
7 import re
8 import sys
9 import tempfile
8 import tempfile
10 import xml.dom.minidom
9 import xml.dom.minidom
11
10
@@ -164,8 +163,8 b' def debugsvnlog(ui, **opts):'
164 raise error.Abort(_('debugsvnlog could not load Subversion python '
163 raise error.Abort(_('debugsvnlog could not load Subversion python '
165 'bindings'))
164 'bindings'))
166
165
167 args = decodeargs(sys.stdin.read())
166 args = decodeargs(ui.fin.read())
168 get_log_child(sys.stdout, *args)
167 get_log_child(ui.fout, *args)
169
168
170 class logstream(object):
169 class logstream(object):
171 """Interruptible revision log iterator."""
170 """Interruptible revision log iterator."""
General Comments 0
You need to be logged in to leave comments. Login now