/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 breezy/doc_generate/autodoc_bash_completion.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
import time
22
22
 
23
 
import brzlib
24
 
import brzlib.help
25
 
import brzlib.commands
26
 
import brzlib.osutils
 
23
import breezy
 
24
import breezy.help
 
25
import breezy.commands
 
26
import breezy.osutils
27
27
 
28
28
 
29
29
def get_filename(options):
31
31
 
32
32
 
33
33
def infogen(options, outfile):
34
 
    tt = brzlib.osutils.gmtime()
 
34
    tt = breezy.osutils.gmtime()
35
35
    params = \
36
36
           { "bzrcmd": options.bzr_name,
37
37
             "datestamp": time.strftime("%Y-%m-%d",tt),
38
38
             "timestamp": time.strftime("%Y-%m-%d %H:%M:%S +0000",tt),
39
 
             "version": brzlib.__version__,
 
39
             "version": breezy.__version__,
40
40
             }
41
41
 
42
42
    outfile.write(preamble % params)