Add missing super() call in ListKeys class.

feature/documentation-builds-dirhtml
Isis Lovecruft 2013-04-05 21:28:26 +00:00
parent 1e4fa9e2f4
commit bb65660586
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 0 deletions

View File

@ -883,6 +883,7 @@ class ListKeys(list):
"""
def __init__(self, gpg):
super(ListKeys, self).__init__()
self.gpg = gpg
self.curkey = None
self.fingerprints = []