/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-06-12 01:45:56 UTC
  • mfrom: (7513.1.2 pypy3)
  • Revision ID: breezy.the.bot@gmail.com-20200612014556-tsc8assk3d0luziu
Avoid deprecated behaviour in ElementTree.

Merged from https://code.launchpad.net/~jelmer/brz/pypy3/+merge/385611

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
        ]