~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-04 13:10:26 UTC
  • Revision ID: mbp@sourcefrog.net-20050404131026-628553cc03687658
new 'renames' command

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    def plural(n, base='', pl=None):
32
32
        if n == 1:
33
33
            return base
34
 
        elif pl != None:
 
34
        elif pl is not None:
35
35
            return pl
36
36
        else:
37
37
            return 's'