From d1a361ec5ccf187062d6e09af71e93c73b990afc Mon Sep 17 00:00:00 2001 From: elie Date: Mon, 18 May 2015 15:33:28 +0000 Subject: fix to function prototype --- pysnmp/smi/compiler.py | 6 +++--- 1 file 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: -- cgit v1.2.1