fixed LazyCrypt.__ne__, thanks Jonathan

This commit is contained in:
mdipierro
2014-01-08 10:24:37 -06:00
parent 9964add97c
commit 5a0aec5b1d
2 changed files with 3 additions and 1 deletions

View File

@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2014.01.07.02.13.10
Version 2.8.2-stable+timestamp.2014.01.08.10.23.41

View File

@@ -2787,6 +2787,8 @@ class LazyCrypt(object):
temp_pass = simple_hash(self.password, key, '', digest_alg)
return temp_pass == stored_password
def __ne__(self, other):
return not self.__eq__(other)
class CRYPT(object):
"""