mercurial/bundle2.py
changeset 32993 560ceb654180
parent 32948 af31d531dda0
child 33042 3e102a8dd52c
equal deleted inserted replaced
32992:8779d35c168d 32993:560ceb654180
   339     unbundler.params
   339     unbundler.params
   340     if repo.ui.debugflag:
   340     if repo.ui.debugflag:
   341         msg = ['bundle2-input-bundle:']
   341         msg = ['bundle2-input-bundle:']
   342         if unbundler.params:
   342         if unbundler.params:
   343             msg.append(' %i params')
   343             msg.append(' %i params')
   344         if op.gettransaction is None:
   344         if op.gettransaction is None or op.gettransaction is _notransaction:
   345             msg.append(' no-transaction')
   345             msg.append(' no-transaction')
   346         else:
   346         else:
   347             msg.append(' with-transaction')
   347             msg.append(' with-transaction')
   348         msg.append('\n')
   348         msg.append('\n')
   349         repo.ui.debug(''.join(msg))
   349         repo.ui.debug(''.join(msg))