summaryrefslogtreecommitdiff
path: root/pysnmp/smi/compiler.py
diff options
context:
space:
mode:
authorelie <elie>2015-05-31 19:35:10 +0000
committerelie <elie>2015-05-31 19:35:10 +0000
commit27c1c8ef97a43f5b6446f09400d0a941564ffbcf (patch)
tree779d7ed0f6e11b93d6628d62c94b3858c027fe93 /pysnmp/smi/compiler.py
parentcbcda159023cd6101328713ba2b6fe5c2a4ed1c7 (diff)
downloadpysnmp-git-27c1c8ef97a43f5b6446f09400d0a941564ffbcf.tar.gz
Major overhaul related to PySMI integration and Standard SNMP Applications
API redesign: * MibVariable becomes ObjectIdentity and moves to pysnmp.smi.rfc1902 * ObjectType and NotificationType classes resempling corresponding MIB MACROs implemented * SNMP Standard Applications and examples modified to support ObjectType and NotificationType parameters
Diffstat (limited to 'pysnmp/smi/compiler.py')
-rw-r--r--pysnmp/smi/compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/smi/compiler.py b/pysnmp/smi/compiler.py
index c5fc2d96..dde6cdc7 100644
--- a/pysnmp/smi/compiler.py
+++ b/pysnmp/smi/compiler.py
@@ -56,7 +56,7 @@ else:
)
compiler.addBorrowers(
- *[ PyFileBorrower(x) for x in getReadersFromUrls(*borrowers, originalMatching=False, lowcaseMatching=False) ]
+ *[ PyFileBorrower(x) for x in getReadersFromUrls(*borrowers, **dict(originalMatching=False, lowcaseMatching=False)) ]
)
mibBuilder.setMibCompiler(compiler, destination)