hello fellows,
I seem to have a little problem:
I tried to use the function getattr(object, attribute) with two strings which is being read from a xml file as arguments, and seem to have a problem with sending the first one as a string. the function thinks that the string object itself is the object argument, when what i meant was that the VALUE of my string will be sent to the function as a name of a module in my program.
the second argument however, isn't doing any problems, and is being treated as the object of the value of the string, and not as a string object itself.
weird!
maybe a conversion between a string object and a module object is possible? i don't know...
help?