add option to convert to ASCII. fixes #204

This commit is contained in:
clinton-hall 2013-11-25 12:03:54 +10:30
commit ed359e8468
8 changed files with 47 additions and 0 deletions

View file

@ -165,6 +165,16 @@ def migrate():
option, value = item
confignew.set(section, option, value)
section = "ASCII"
original = []
try:
original = configold.items(section)
except:
pass
for item in original:
option, value = item
confignew.set(section, option, value)
section = "loggers"
original = []
try: