summaryrefslogtreecommitdiff
path: root/examples/smi
diff options
context:
space:
mode:
authorelie <elie>2007-03-25 20:43:27 +0000
committerelie <elie>2007-03-25 20:43:27 +0000
commit3f2e93eeb1a4d456bdfd321f5ab235358d407d82 (patch)
treeac4e355d937b2156e9378f8c58883af7cb3b9056 /examples/smi
parent3b659ebfb855b1525306b29bd484bf3814daea8c (diff)
downloadpysnmp-3f2e93eeb1a4d456bdfd321f5ab235358d407d82.tar.gz
do not explicitly initialize index value as it's now being done automatically
Diffstat (limited to 'examples/smi')
-rw-r--r--examples/smi/backend.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/smi/backend.py b/examples/smi/backend.py
index 430dbab..9d2b38b 100644
--- a/examples/smi/backend.py
+++ b/examples/smi/backend.py
@@ -13,8 +13,7 @@ print 'done'
print 'Remote manager write/create access to MIB instrumentation: ',
print mibInstrum.writeVars(
- (((1,3,6,1,6,3,18,1,1,1,1,109,121,110,109,115), 'mynms'),
- ((1,3,6,1,6,3,18,1,1,1,2,109,121,110,109,115), 'mycomm'),
+ (((1,3,6,1,6,3,18,1,1,1,2,109,121,110,109,115), 'mycomm'),
((1,3,6,1,6,3,18,1,1,1,3,109,121,110,109,115), 'mynmsname'),
((1,3,6,1,6,3,18,1,1,1,7,109,121,110,109,115), 'volatile'))
)