[Pkg-gnupg-commit] [gpgme] 90/412: python: Fix function invocation.

Daniel Kahn Gillmor dkg at fifthhorseman.net
Thu Sep 22 21:26:22 UTC 2016


This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch master
in repository gpgme.

commit e3d3d366bd1a1aea8a38ae5dcbf71ea3c784e920
Author: Justus Winter <justus at gnupg.org>
Date:   Thu May 12 12:54:15 2016 +0200

    python: Fix function invocation.
    
    * lang/python/pyme/core.py (Data.new_from_fd): Fix function
    invocation.
    
    Signed-off-by: Justus Winter <justus at gnupg.org>
---
 lang/python/pyme/core.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/python/pyme/core.py b/lang/python/pyme/core.py
index 2a37ba3..e822704 100644
--- a/lang/python/pyme/core.py
+++ b/lang/python/pyme/core.py
@@ -380,7 +380,7 @@ class Data(GpgmeWrapper):
         if fp == None:
             raise ValueError("Failed to open file from %s arg %s" % \
                   (str(type(file)), str(file)))
-        errorcheck(gpgme_data_new_from_fd(tmp, fp))
+        errorcheck(pygpgme.gpgme_data_new_from_fd(tmp, fp))
         self.wrapped = pygpgme.gpgme_data_t_p_value(tmp)
         pygpgme.delete_gpgme_data_t_p(tmp)
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gpgme.git



More information about the Pkg-gnupg-commit mailing list