summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pysnmp/proto/secmod/rfc3414/service.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pysnmp/proto/secmod/rfc3414/service.py b/pysnmp/proto/secmod/rfc3414/service.py
index f20df861..74bdaff9 100644
--- a/pysnmp/proto/secmod/rfc3414/service.py
+++ b/pysnmp/proto/secmod/rfc3414/service.py
@@ -383,9 +383,9 @@ class SnmpUSMSecurityModel(AbstractSecurityModel):
'securityEngineID "%s" and securityName "%s"' % (
usmUserName, usmUserSecurityName,
usmUserAuthProtocol,
- usmUserAuthKeyLocalized.prettyPrint(),
+ usmUserAuthKeyLocalized and usmUserAuthKeyLocalized.prettyPrint(),
usmUserPrivProtocol,
- usmUserPrivKeyLocalized.prettyPrint(),
+ usmUserPrivKeyLocalized and usmUserPrivKeyLocalized.prettyPrint(),
securityEngineID.prettyPrint(),
securityName))
@@ -416,9 +416,9 @@ class SnmpUSMSecurityModel(AbstractSecurityModel):
'securityEngineID "%s" and securityName "%s"' % (
usmUserName, usmUserSecurityName,
usmUserAuthProtocol,
- usmUserAuthKeyLocalized.prettyPrint(),
+ usmUserAuthKeyLocalized and usmUserAuthKeyLocalized.prettyPrint(),
usmUserPrivProtocol,
- usmUserPrivKeyLocalized.prettyPrint(),
+ usmUserPrivKeyLocalized and usmUserPrivKeyLocalized.prettyPrint(),
securityEngineID.prettyPrint(), securityName))
except NoSuchInstanceError: