~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/cmd_version_info.py

  • Committer: Robert Collins
  • Date: 2007-07-04 08:08:13 UTC
  • mfrom: (2572 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2587.
  • Revision ID: robertc@robertcollins.net-20070704080813-wzebx0r88fvwj5rq
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Commands for generating snapshot information about a bzr tree."""
18
18
 
 
19
from bzrlib.lazy_import import lazy_import
 
20
lazy_import(globals(), """
19
21
from bzrlib import (
20
22
    branch,
21
23
    errors,
22
24
    version_info_formats,
23
25
    workingtree,
24
26
    )
 
27
""")
25
28
from bzrlib.commands import Command
26
29
from bzrlib.option import Option
27
30
 
42
45
 
43
46
 
44
47
class cmd_version_info(Command):
45
 
    """Generate version information about this tree."""
 
48
    """Show version information about this tree."""
46
49
 
47
50
    takes_options = [Option('format', type=_parse_version_info_format,
48
51
                            help='Select the output format'),