summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2015-05-18 15:33:28 +0000
committerelie <elie>2015-05-18 15:33:28 +0000
commitd1a361ec5ccf187062d6e09af71e93c73b990afc (patch)
tree8b22d174f60f30f44f4d17e6f59d9c7959694e39
parenta4fb54639e97cb572689e24a5c5e42b4f66a62e0 (diff)
downloadpysnmp-d1a361ec5ccf187062d6e09af71e93c73b990afc.tar.gz
fix to function prototype
-rw-r--r--pysnmp/smi/compiler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pysnmp/smi/compiler.py b/pysnmp/smi/compiler.py
index 80e041c..c5fc2d9 100644
--- a/pysnmp/smi/compiler.py
+++ b/pysnmp/smi/compiler.py
@@ -19,9 +19,9 @@ except ImportError:
from pysnmp.smi import error
def addMibCompiler(mibBuilder,
- sources=defaultSources,
- destination=defaultDest,
- borrowers=defaultBorrowers):
+ sources=[],
+ destination='',
+ borrowers=[]):
raise error.SmiError('MIB compiler not available (pysmi not installed)')
else: