From bb6566058638fd3c9c895e49ad45e9e888a6db75 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Fri, 5 Apr 2013 21:28:26 +0000 Subject: [PATCH] Add missing super() call in ListKeys class. --- gnupg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gnupg.py b/gnupg.py index 50a83ad..379da08 100644 --- a/gnupg.py +++ b/gnupg.py @@ -883,6 +883,7 @@ class ListKeys(list): """ def __init__(self, gpg): + super(ListKeys, self).__init__() self.gpg = gpg self.curkey = None self.fingerprints = []