Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
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)