~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Martin Pool
  • Date: 2008-05-08 04:21:01 UTC
  • mto: This revision was merged to the branch mainline in revision 3415.
  • Revision ID: mbp@sourcefrog.net-20080508042101-c9c0dmqo4not47qm
Compare to None using is/is not not ==

Show diffs side-by-side

added added

removed removed

Lines of Context:
1937
1937
                            # ... but not ignored
1938
1938
                            has_changed_files = True
1939
1939
                            break
1940
 
                    elif content_change and (kind[1] != None):
 
1940
                    elif content_change and (kind[1] is not None):
1941
1941
                        # Versioned and changed, but not deleted
1942
1942
                        has_changed_files = True
1943
1943
                        break