blob: a960104e91990bbc443e4af0461a77e9a9e17ebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from ConfigParser import SafeConfigParser
class MarkdownSyntaxError(Exception):
pass
class CustomConfigParser(SafeConfigParser):
def get(self, section, option):
value = SafeConfigParser.get(self, section, option)
if option == 'extensions':
if len(value.strip()):
return value.split(',')
else:
return []
if value.lower() in ['yes', 'true', 'on']:
return True
if value.lower() in ['no', 'false', 'off']:
return False
return value
|