~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-11 01:58:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050411015857-f781b0d325632cf5cacd2481
- more output from test.sh
- write revison-history in a way that is hardlink-safe

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 is not None:
 
34
        elif pl != None:
35
35
            return pl
36
36
        else:
37
37
            return 's'