~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Robey Pointer
  • Date: 2006-09-08 18:46:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1996.
  • Revision ID: robey@lag.net-20060908184629-e3fc4c61ca21508c
pychecker is on crack; go back to using 'is None'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
            m_revision = branch.repository.get_revision(merge)
178
178
            print >> to_file, ' ', line_log(m_revision, width - 3)
179
179
            inner_merges = branch.repository.get_ancestry(merge)
180
 
            assert inner_merges[0] == None
 
180
            assert inner_merges[0] is None
181
181
            inner_merges.pop(0)
182
182
            inner_merges.reverse()
183
183
            for mmerge in inner_merges: