[git] GPGME - branch, pyme, updated. gpgme-1.5.4-3-g9007978
by Ben McGinnes
cvs at cvs.gnupg.org
Fri May 8 20:55:52 CEST 2015
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG Made Easy".
The branch, pyme has been updated
via 90079786c5cde4dd8ceb2e0fcda7605b08ccd021 (commit)
from ebd8734ad705afa4edc409787a00d4968d25e018 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 90079786c5cde4dd8ceb2e0fcda7605b08ccd021
Author: Ben McGinnes <ben at adversary.org>
Date: Sat May 9 04:53:46 2015 +1000
String type
* the plain text string must be bytes and not unicode.
* Expect most of the example code to have similar issues at present.
diff --git a/lang/py3-pyme/examples/simple.py b/lang/py3-pyme/examples/simple.py
index ceda3d9..5693d40 100755
--- a/lang/py3-pyme/examples/simple.py
+++ b/lang/py3-pyme/examples/simple.py
@@ -25,7 +25,7 @@ core.check_version(None)
# Set up our input and output buffers.
-plain = core.Data('This is my message.')
+plain = core.Data(b'This is my message.')
cipher = core.Data()
# Initialize our context.
-----------------------------------------------------------------------
Summary of changes:
lang/py3-pyme/examples/simple.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GnuPG Made Easy
http://git.gnupg.org
More information about the Gnupg-commits
mailing list