~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_man.py

Minor pep8 cleanups to previous revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
1
# Copyright 2005 Canonical Ltd.
4
2
 
5
3
# This program is free software; you can redistribute it and/or modify
16
14
# along with this program; if not, write to the Free Software
17
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
16
 
19
 
"""big_man.py - create man page from built-in bzr help and static text
 
17
"""man.py - create man page from built-in bzr help and static text
20
18
 
21
19
TODO:
22
20
  * use usage information instead of simple "bzr foo" in COMMAND OVERVIEW
32
30
import bzrlib.help
33
31
import bzrlib.commands
34
32
 
 
33
 
35
34
def get_filename(options):
36
35
    """Provides name of manpage"""
37
36
    return "%s.1" % (options.bzr_name)
194
193
.BR http://www.bazaar-ng.org/
195
194
"""
196
195
 
197
 
if __name__ == '__main__':
198
 
    main(sys.argv[1:])
199