ssato / python-anyconfig

Python library provides common APIs to load and dump configuration files in various formats
MIT License
277 stars 31 forks source link

Dumping a ini file adds newline after every key #41

Closed ajays20078 closed 8 years ago

ajays20078 commented 8 years ago

Input:

[server] host = localhost port = 8080

After using anyconfig.dump()

[server]

host = localhost

port = 8080

ssato commented 8 years ago

Thanks for your report!

I guess that the commit 0f975f2ef9054f27876c2f36d8cdd4c20c72a57e may fix this. Could you please try the head version of master branch?

ajays20078 commented 8 years ago

That seems to fix the issue. Closing this Issue.