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

  • Committer: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
from __future__ import absolute_import
21
21
 
22
 
from . import (
 
22
from bzrlib import (
23
23
    controldir,
24
24
    errors,
25
25
    gpg,
26
26
    revision as _mod_revision,
27
27
    )
28
 
from .commands import Command
29
 
from .option import Option
30
 
from .i18n import gettext, ngettext
31
 
from .sixish import text_type
 
28
from bzrlib.commands import Command
 
29
from bzrlib.option import Option
 
30
from bzrlib.i18n import gettext, ngettext
32
31
 
33
32
 
34
33
class cmd_sign_my_commits(Command):
111
110
                   help='Comma separated list of GPG key patterns which are'
112
111
                        ' acceptable for verification.',
113
112
                   short_name='k',
114
 
                   type=text_type,),
 
113
                   type=str,),
115
114
            'revision',
116
115
            'verbose',
117
116
          ]