sort inis
This commit is contained in:
parent
2d4afe6b53
commit
715e163514
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
from configparser import ConfigParser
|
from configparser import ConfigParser
|
||||||
|
import json
|
||||||
|
|
||||||
def parse(text):
|
def parse(text):
|
||||||
config = ConfigParser()
|
config = ConfigParser()
|
||||||
|
@ -17,7 +18,8 @@ class Writable():
|
||||||
|
|
||||||
def dumps(dict):
|
def dumps(dict):
|
||||||
config = ConfigParser()
|
config = ConfigParser()
|
||||||
config.read_dict(dict)
|
sorted_dict = json.loads(json.dumps(dict, sort_keys=True))
|
||||||
|
config.read_dict(sorted_dict)
|
||||||
writable = Writable()
|
writable = Writable()
|
||||||
config.write(writable)
|
config.write(writable)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue