summaryrefslogtreecommitdiff
path: root/examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-02-09 16:26:45 +0100
committerIlya Etingof <etingof@gmail.com>2019-02-09 16:26:45 +0100
commit05b982f4b1cfa143d6fa607a6b9b24d3a77981a1 (patch)
treeb0dda7d5bdbe541c872aaac8f0e1d4886394228c /examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
parentde01c8d07145f7e4aea510d5a89e59da8e57066d (diff)
downloadpysnmp-git-05b982f4b1cfa143d6fa607a6b9b24d3a77981a1.tar.gz
Drop Python < 2.6 kwargs expansion compatibility trick
Diffstat (limited to 'examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py')
-rw-r--r--examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py b/examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
index 7c282a81..beeb1785 100644
--- a/examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
+++ b/examples/hlapi/v1arch/asyncore/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py
@@ -58,6 +58,6 @@ snmpDispatcher = SnmpDispatcher()
# Submit a bunch of initial GET requests
for authData, transportTarget, varBinds in targets:
getCmd(snmpDispatcher, authData, transportTarget, *varBinds,
- **dict(cbFun=cbFun, lookupMib=True))
+ cbFun=cbFun, lookupMib=True)
snmpDispatcher.transportDispatcher.runDispatcher()