##// END OF EJS Templates
Cosmetic fix
neko259 -
r1947:24225390 default
parent child Browse files
Show More
@@ -17,6 +17,7 b' def get_int(section, name):'
17 def get_bool(section, name):
17 def get_bool(section, name):
18 return get(section, name) == 'true'
18 return get(section, name) == 'true'
19
19
20
20 def get_list_dict(section, name):
21 def get_list_dict(section, name):
21 str_dict = get(section, name)
22 str_dict = get(section, name)
22 return [item.split(':') for item in str_dict.split(',')]
23 return [item.split(':') for item in str_dict.split(',')]
General Comments 0
You need to be logged in to leave comments. Login now