Skip to content

Commit

Permalink
SecretKey: Correct a class inheritance mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
benallard committed Jan 21, 2013
1 parent dbd2010 commit ffcbe3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythoncard/security/secretkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def getKey(self, keyData, keyOff):
def setKey(self, keyData, keyOff):
raise NotImplementedError

class pyDesDESKey(SecretKey):
class pyDesDESKey(DESKey):
def __init__(self, typ, size):
SecretKey.__init__(self, typ, size)
self._key = None
Expand Down

0 comments on commit ffcbe3f

Please sign in to comment.