~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/gpg.py

  • Committer: pauljnixon at gmail
  • Date: 2012-07-05 22:03:40 UTC
  • mfrom: (6534 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6547.
  • Revision ID: pauljnixon@gmail.com-20120705220340-y6lz4shlvgz9cx7o
Added "--context" option to "bzr diff" to control number of lines of context shown

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):