/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: 2017-11-12 02:01:00 UTC
  • mfrom: (6805.1.4 unicode-option)
  • Revision ID: jelmer@jelmer.uk-20171112020100-sx781yx88ng0yjwz
merge lp:~jelmer/brz/options-unicode/

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from .commands import Command
29
29
from .option import Option
30
30
from .i18n import gettext, ngettext
 
31
from .sixish import text_type
31
32
 
32
33
 
33
34
class cmd_sign_my_commits(Command):
110
111
                   help='Comma separated list of GPG key patterns which are'
111
112
                        ' acceptable for verification.',
112
113
                   short_name='k',
113
 
                   type=str,),
 
114
                   type=text_type,),
114
115
            'revision',
115
116
            'verbose',
116
117
          ]