summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2014-06-15 14:21:45 +0000
committerelie <elie>2014-06-15 14:21:45 +0000
commitca2b8ef4cef5cec864d6f6e3a11ae388205165e1 (patch)
treeb9ec0b268cd14262e299b73ed1e8e838b4634d1b
parent7eaef0251e0d38d139cd8a6e6b45a24b388ba491 (diff)
downloadpysnmp-ca2b8ef4cef5cec864d6f6e3a11ae388205165e1.tar.gz
fix to auth objects cleanup code
-rw-r--r--pysnmp/entity/rfc3413/oneliner/ntforg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/entity/rfc3413/oneliner/ntforg.py b/pysnmp/entity/rfc3413/oneliner/ntforg.py
index 357d150..9127dd9 100644
--- a/pysnmp/entity/rfc3413/oneliner/ntforg.py
+++ b/pysnmp/entity/rfc3413/oneliner/ntforg.py
@@ -81,7 +81,7 @@ class AsyncNotificationOriginator(cmdgen.AsyncCommandGenerator):
else:
raise error.PySnmpError('Unknown authData %s' % (authData,))
else:
- authDataKeys = cache['auth'].keys()
+ authDataKeys = tuple(cache['auth'].keys())
addrNames, paramsNames = self.uncfgCmdGen(snmpEngine, authData)