~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-06-06 13:19:26 UTC
  • Revision ID: mbp@sourcefrog.net-20050606131926-42de76f119ad881c
- Tidy help messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
839
839
 
840
840
 
841
841
class cmd_unknowns(Command):
842
 
    """List unknown files"""
 
842
    """List unknown files."""
843
843
    def run(self):
844
844
        for f in Branch('.').unknowns():
845
845
            print quotefn(f)
847
847
 
848
848
 
849
849
class cmd_ignore(Command):
850
 
    """Ignore a command or pattern
 
850
    """Ignore a command or pattern.
851
851
 
852
852
    To remove patterns from the ignore list, edit the .bzrignore file.
853
853
 
1047
1047
 
1048
1048
 
1049
1049
class cmd_version(Command):
1050
 
    """Show version of bzr"""
 
1050
    """Show version of bzr."""
1051
1051
    def run(self):
1052
1052
        show_version()
1053
1053