summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen McGinnes <ben@adversary.org>2018-03-25 10:01:14 +1100
committerBen McGinnes <ben@adversary.org>2018-03-25 10:01:14 +1100
commit22247f658ce2f8e527c26746358cfc2643c4832f (patch)
treed263a31c55909234a9f4870fb0b06ed11722e4b5
parent4763974ef6932c503e35c3d14fe47a66a5323f48 (diff)
downloadgpgme-22247f658ce2f8e527c26746358cfc2643c4832f.tar.gz
doc: python bindings howto
* Fixed the plaintext, result and verify_result references in the decryption section.
-rw-r--r--lang/python/docs/GPGMEpythonHOWTOen.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/python/docs/GPGMEpythonHOWTOen.org b/lang/python/docs/GPGMEpythonHOWTOen.org
index 1e8dd9fa..4d1124f0 100644
--- a/lang/python/docs/GPGMEpythonHOWTOen.org
+++ b/lang/python/docs/GPGMEpythonHOWTOen.org
@@ -675,10 +675,10 @@
nfile.write(plaintext)
#+end_src
- The data available in plaintext in this example is the decrypted
- content as a byte object in =plaintext[0]=, the recipient key IDs
- and algorithms in =plaintext[1]= and the results of verifying any
- signatures of the data in =plaintext[0]=.
+ The data available in =plaintext= in this example is the decrypted
+ content as a byte object, the recipient key IDs and algorithms in
+ =result= and the results of verifying any signatures of the data in
+ =verify_result=.
** Signing text and files