mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Christophe Sovant
14.04.2009 96d4a1c7cef8d3ced7735a74ebef95e93fa18321
opendj-sdk/opends/tests/staf-tests/shared/python/snmp.py
@@ -41,9 +41,9 @@
    for line in output.splitlines():
      if line.startswith('ds'):
        key = line.split(separator)[0].strip()
        key = line.split(separator,1)[0].strip()
        try:
          value = line.split(separator)[1].strip()
          value = line.split(separator,1)[1].strip()
        except IndexError:
          value = '-'
        table[key] = value