I have a datalib method that is type 'NoneType' and it behaves oddly:
>>> print ISC_MSG
None
>>> ISC_MSG = (ISC.message("INFO", MESSAGE = 'test' ))
INFO (I) test
>>> ISC_MSG
>>>
I'd like to print "INFO (I) test" to an external file, but every time I try a 'print' or file.write()...it gives me "None."
How might I get this StringIO() to print the actual content in string format "INFO (I) test" to a file?
Thank you!