~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
386
386
            message = rev.message.rstrip('\r\n')
387
387
            for l in message.split('\n'):
388
388
                print >>to_file,  indent+'  ' + l
389
 
        if delta != None:
 
389
        if delta is not None:
390
390
            delta.show(to_file, self.show_ids)
391
391
 
392
392
 
412
412
 
413
413
        # TODO: Why not show the modified files in a shorter form as
414
414
        # well? rewrap them single lines of appropriate length
415
 
        if delta != None:
 
415
        if delta is not None:
416
416
            delta.show(to_file, self.show_ids)
417
417
        print >>to_file, ''
418
418