~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.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:
147
147
        if self._last_revision is NULL_REVISION:
148
148
            # explicit limit of no revisions needed
149
149
            return None
150
 
        if (self._last_revision != None and
 
150
        if (self._last_revision is not None and
151
151
            self.to_repository.has_revision(self._last_revision)):
152
152
            return None
153
153