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 lukasz.langa
Recipients Alzakath, eric.araujo, lukasz.langa, raduv
Date 2013-04-02.12:38:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364906326.9.0.75221359941.issue17453@psf.upfronthosting.co.za>
In-reply-to
Content
Treating "" as empty values was a bug in configparser pre 3.2 (it made it impossible to store "" as a value).

Simply change

  [section]
  option = ""

to

  [section]
  option =

Does that solve your problem?
History
Date User Action Args
2013-04-02 12:38:46lukasz.langasetrecipients: + lukasz.langa, eric.araujo, Alzakath, raduv
2013-04-02 12:38:46lukasz.langasetmessageid: <1364906326.9.0.75221359941.issue17453@psf.upfronthosting.co.za>
2013-04-02 12:38:46lukasz.langalinkissue17453 messages
2013-04-02 12:38:46lukasz.langacreate