tests/test-bundle2-format.t
changeset 38609 d474b3b44d4f
parent 38608 980aee54fd70
child 39239 0617a700ef7b
equal deleted inserted replaced
38608:980aee54fd70 38609:d474b3b44d4f
    89   >     bundler = bundle2.bundle20(ui)
    89   >     bundler = bundle2.bundle20(ui)
    90   >     for p in opts['param']:
    90   >     for p in opts['param']:
    91   >         p = p.split(b'=', 1)
    91   >         p = p.split(b'=', 1)
    92   >         try:
    92   >         try:
    93   >             bundler.addparam(*p)
    93   >             bundler.addparam(*p)
    94   >         except ValueError as exc:
    94   >         except error.ProgrammingError as exc:
    95   >             raise error.Abort('%s' % exc)
    95   >             raise error.Abort(b'%s' % exc)
    96   > 
    96   > 
    97   >     if opts['compress']:
    97   >     if opts['compress']:
    98   >         bundler.setcompression(opts['compress'])
    98   >         bundler.setcompression(opts['compress'])
    99   > 
    99   > 
   100   >     if opts['reply']:
   100   >     if opts['reply']: