~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/gpg.py

  • Committer: Jelmer Vernooij
  • Date: 2012-06-29 08:12:32 UTC
  • mfrom: (6437.63.2 2.5)
  • mto: This revision was merged to the branch mainline in revision 6532.
  • Revision ID: jelmer@samba.org-20120629081232-h0yexc1e9tezazrn
Up-merge 2.5, which reverses --no-tty patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
            # use the user email address
214
214
            key = config.extract_email_address(self._config_stack.get('email'))
215
215
        return [self._config_stack.get('gpg_signing_command'), '--clearsign',
216
 
                '-u', key, '--no-tty']
 
216
                '-u', key]
217
217
 
218
218
    def sign(self, content):
219
219
        if isinstance(content, unicode):