~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/sign_my_commits.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-16 22:35:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1942.
  • Revision ID: john@arbash-meinel.com-20060816223521-73357694d4b7df0b
One field was incorrect, need text_sha1 not text_size

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):