##// 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 6 import os
7 7 import re
8 import sys
9 8 import tempfile
10 9 import xml.dom.minidom
11 10
@@ -164,8 +163,8 b' def debugsvnlog(ui, **opts):'
164 163 raise error.Abort(_('debugsvnlog could not load Subversion python '
165 164 'bindings'))
166 165
167 args = decodeargs(sys.stdin.read())
168 get_log_child(sys.stdout, *args)
166 args = decodeargs(ui.fin.read())
167 get_log_child(ui.fout, *args)
169 168
170 169 class logstream(object):
171 170 """Interruptible revision log iterator."""
General Comments 0
You need to be logged in to leave comments. Login now