~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/serializer/__init__.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:
149
149
    
150
150
    # This has to be formatted for "original" date, so that the
151
151
    # revision XML entry will be reproduced faithfully.
152
 
    if offset == None:
 
152
    if offset is None:
153
153
        offset = 0
154
154
    tt = time.gmtime(t + offset)
155
155