~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/memorytree.py

  • Committer: Martin Pool
  • Date: 2008-06-18 05:35:02 UTC
  • mto: This revision was merged to the branch mainline in revision 3510.
  • Revision ID: mbp@sourcefrog.net-20080618053502-9ogi5d5tx7w5ybf6
Change stray pdb calls to exceptions

Show diffs side-by-side

added added

removed removed

Lines of Context:
290
290
                raise errors.GhostRevisionUnusableHere(parents_list[0][0])
291
291
            self._parent_ids = [parent_id for parent_id, tree in parents_list]
292
292
            if parents_list[0][1] is None or parents_list[0][1] == 'null:':
293
 
                import pdb; pdb.set_trace()
294
293
                self._basis_tree = self.branch.repository.revision_tree(None)
295
294
            else:
296
295
                self._basis_tree = parents_list[0][1]