Message7321

Author alex.gronholm
Recipients Arfrever, alex.gronholm, fwierzbicki, pjenvey
Date 2012-07-16.08:24:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342427092.3.0.483709778994.issue1900@psf.upfronthosting.co.za>
In-reply-to
Content
I am able to reproduce it again. No matter how many times I restart, my app won't start. This was triggered by adding new jars to the class path. I get the same "Item in ``from list'' not a string" error every time.
I tracked this error to line 872 in imp.java:

if (!Py.isInstance(item, PyString.TYPE)) {
                    throw Py.TypeError("Item in ``from list'' not a string");
                }

It only checks for the string type, not unicode. If the element is a unicode string, it'll fail. That's my theory anyway.
History
Date User Action Args
2012-07-16 08:24:52alex.gronholmsetmessageid: <1342427092.3.0.483709778994.issue1900@psf.upfronthosting.co.za>
2012-07-16 08:24:52alex.gronholmsetrecipients: + alex.gronholm, fwierzbicki, pjenvey, Arfrever
2012-07-16 08:24:52alex.gronholmlinkissue1900 messages
2012-07-16 08:24:51alex.gronholmcreate