/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Andrew Bennetts
  • Date: 2009-03-08 23:11:57 UTC
  • mto: This revision was merged to the branch mainline in revision 4091.
  • Revision ID: andrew.bennetts@canonical.com-20090308231157-uad0ft3wtkmjkyul
Fix trivial bug in workaround of pdb.post_mortem.

Show diffs side-by-side

added added

removed removed

Lines of Context:
943
943
                p.setup(tb.tb_frame, tb)
944
944
                # Point the debugger at the deepest frame of the stack
945
945
                p.curindex = len(p.stack) - 1
946
 
                p.curframe = p.stack[p.curindex]
 
946
                p.curframe = p.stack[p.curindex][0]
947
947
                # Start the pdb prompt.
948
948
                p.print_stack_entry(p.stack[p.curindex])
949
949
                p.execRcLines()