Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Directory
kairu0
bykairu0, June 5, 2014
Ran into an instance where I too got the "invalid tokens" errors when running the script. It turns out that my Chassis had an unprintable character in it (Thanks HP!).
As an ugly patch, I inserted the following before line 198 in pywbem/cim_operations.py.
resp_xml = filter(lambda x: x in string.printable, resp_xml)
As an ugly patch, I inserted the following before line 198 in pywbem/cim_operations.py.
resp_xml = filter(lambda x: x in string.printable, resp_xml)