summaryrefslogtreecommitdiff
path: root/pysnmp/entity/rfc3413
diff options
context:
space:
mode:
authorelie <elie>2008-11-12 21:32:59 +0000
committerelie <elie>2008-11-12 21:32:59 +0000
commitad2d9bb953dcb397687e9bc8d7426145d48e052e (patch)
treeab554a31029f67a9f7aa38e9f364211e505ce7fa /pysnmp/entity/rfc3413
parent748e6a24834ff09a5dda382d1b92612e01b60f5d (diff)
downloadpysnmp-git-ad2d9bb953dcb397687e9bc8d7426145d48e052e.tar.gz
fix to proper tagList format (still needs a look)
Diffstat (limited to 'pysnmp/entity/rfc3413')
-rw-r--r--pysnmp/entity/rfc3413/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/entity/rfc3413/config.py b/pysnmp/entity/rfc3413/config.py
index 6070784b..d2ca8aff 100644
--- a/pysnmp/entity/rfc3413/config.py
+++ b/pysnmp/entity/rfc3413/config.py
@@ -144,7 +144,7 @@ def getTargetNames(snmpEngine, tag):
except NoSuchObjectError:
break
# XXX stop on eot
- if tag in string.split(str(mibNode.syntax)): # XXX add __split__()
+ if tag in string.split(str(mibNode.syntax), ' '): # XXX add __split__()
idx = mibNode.name[len(snmpTargetAddrTagList.name):]
targetNames.append(
snmpTargetAddrEntry.getIndicesFromInstId(idx)[0]