aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/pyme/util.py
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-05-10 11:30:30 +0000
committerJustus Winter <[email protected]>2016-05-10 11:30:30 +0000
commitaade53a12b9716997684b872bc2ac87229f73fb3 (patch)
tree3b7765c59ff99c7929a3e08053bcd2f301a1ceec /lang/python/pyme/util.py
parentpython: Drop Debian packaging. (diff)
downloadgpgme-aade53a12b9716997684b872bc2ac87229f73fb3.tar.gz
gpgme-aade53a12b9716997684b872bc2ac87229f73fb3.zip
python: Delete trailing whitespace.
-- Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r--lang/python/pyme/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/pyme/util.py b/lang/python/pyme/util.py
index c5f02a96..32e2f556 100644
--- a/lang/python/pyme/util.py
+++ b/lang/python/pyme/util.py
@@ -28,7 +28,7 @@ def process_constants(starttext, dict):
continue
name = identifier[index:]
dict[name] = getattr(pygpgme, identifier)
-
+
class GpgmeWrapper(object):
"""Base class all Pyme wrappers for GPGME functionality. Not to be
instantiated directly."""
@@ -51,7 +51,7 @@ class GpgmeWrapper(object):
def _getctype(self):
raise NotImplementedException
-
+
def __getattr__(self, name):
"""On-the-fly function generation."""
if name[0] == '_' or self._getnameprepend() == None: