~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/sign_my_commits.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 16:43:12 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730164312-b025fd3ff0cee59e
rename  gpl.txt => COPYING.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Command which looks for unsigned commits by the current user, and signs them.
18
18
"""
19
19
 
20
 
from bzrlib.lazy_import import lazy_import
21
 
lazy_import(globals(), """
22
 
from bzrlib import (
23
 
    config,
24
 
    gpg,
25
 
    )
 
20
from bzrlib import config, gpg
 
21
from bzrlib.commands import Command
26
22
from bzrlib.bzrdir import BzrDir
27
 
""")
28
 
from bzrlib.commands import Command
29
23
from bzrlib.option import Option
30
24
 
31
25
 
41
35
    # (both mainline and merged), but not other revisions that may be in the
42
36
    # repository
43
37
 
44
 
    takes_options = [
45
 
            Option('dry-run',
46
 
                   help='Don\'t actually sign anything, just print'
47
 
                        ' the revisions that would be signed.'),
48
 
            ]
 
38
    takes_options = [Option('dry-run'
 
39
                            , help='Don\'t actually sign anything, just print'
 
40
                                   ' the revisions that would be signed')
 
41
                    ]
49
42
    takes_args = ['location?', 'committer?']
50
43
 
51
44
    def run(self, location=None, committer=None, dry_run=False):