/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/commit_signature_commands.py

  • Committer: Jelmer Vernooij
  • Date: 2020-02-21 04:28:46 UTC
  • mfrom: (7494 work)
  • mto: This revision was merged to the branch mainline in revision 7496.
  • Revision ID: jelmer@jelmer.uk-20200221042846-r8lzqu0jetkw772i
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Command that signs unsigned commits by the current user. """
18
18
 
19
 
from __future__ import absolute_import
20
 
 
21
19
from . import (
22
20
    controldir,
23
21
    errors,
28
26
from .commands import Command
29
27
from .option import Option
30
28
from .i18n import gettext, ngettext
31
 
from .sixish import text_type
32
29
 
33
30
 
34
31
class cmd_sign_my_commits(Command):
102
99
               help='Comma separated list of GPG key patterns which are'
103
100
               ' acceptable for verification.',
104
101
               short_name='k',
105
 
               type=text_type,),
 
102
               type=str,),
106
103
        'revision',
107
104
        'verbose',
108
105
        ]