This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Michael Jacob
Recipients Michael Jacob
Date 2016-03-02.09:53:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456912427.94.0.111474248678.issue26469@psf.upfronthosting.co.za>
In-reply-to
Content
My bad.

ConfigParser expects an interpolation object, not a class.

Instead of c=ConfigParser(interpolation=ExtendedInterpolation)

you need to create it with:

c=ConfigParser(interpolation=ExtendedInterpolation())

Sorry about that.
History
Date User Action Args
2016-03-02 09:53:47Michael Jacobsetrecipients: + Michael Jacob
2016-03-02 09:53:47Michael Jacobsetmessageid: <1456912427.94.0.111474248678.issue26469@psf.upfronthosting.co.za>
2016-03-02 09:53:47Michael Jacoblinkissue26469 messages
2016-03-02 09:53:47Michael Jacobcreate