/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to brzlib/doc_generate/autodoc_man.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 13:10:35 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521131035-xltmj0b4f6fbybo8
Rename some windows stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
def get_filename(options):
42
42
    """Provides name of manpage"""
43
 
    return "%s.1" % (options.bzr_name)
 
43
    return "%s.1" % (options.brz_name)
44
44
 
45
45
 
46
46
def infogen(options, outfile):
47
47
    """Assembles a man page"""
48
48
    tt = brzlib.osutils.gmtime()
49
49
    params = \
50
 
           { "bzrcmd": options.bzr_name,
 
50
           { "bzrcmd": options.brz_name,
51
51
             "datestamp": time.strftime("%Y-%m-%d",tt),
52
52
             "timestamp": time.strftime("%Y-%m-%d %H:%M:%S +0000",tt),
53
53
             "version": brzlib.__version__,