Add missing param to utilities methods.

testing/mmn/mktime_takes_localtime_not_gmtime
drebs 2013-07-04 19:40:52 -03:00 committed by Isis Lovecruft
parent 9db97dd184
commit 2832df8be1
1 changed files with 1 additions and 1 deletions

View File

@ -977,7 +977,7 @@ class GPGUtilities(object):
return bool(result.key)
def is_encrypted(self, raw_data):
self.is_encrypted_asym() or self.is_encrypted_sym()
return self.is_encrypted_asym(raw_data) or self.is_encrypted_sym(raw_data)
if __name__ == "__main__":
from .test import test_gnupg