hgext/convert/subversion.py
changeset 30260 21f977dbfaec
parent 30132 72f75eda02ba
child 30261 6bed17ba00a1
equal deleted inserted replaced
30259:d06c049695e6 30260:21f977dbfaec
   162     """
   162     """
   163     if svn is None:
   163     if svn is None:
   164         raise error.Abort(_('debugsvnlog could not load Subversion python '
   164         raise error.Abort(_('debugsvnlog could not load Subversion python '
   165                            'bindings'))
   165                            'bindings'))
   166 
   166 
   167     util.setbinary(sys.stdin)
       
   168     util.setbinary(sys.stdout)
       
   169     args = decodeargs(sys.stdin.read())
   167     args = decodeargs(sys.stdin.read())
   170     get_log_child(sys.stdout, *args)
   168     get_log_child(sys.stdout, *args)
   171 
   169 
   172 class logstream(object):
   170 class logstream(object):
   173     """Interruptible revision log iterator."""
   171     """Interruptible revision log iterator."""