change config separator to whitespace
This commit is contained in:
parent
78a87f725e
commit
3b82594a32
3 changed files with 4 additions and 4 deletions
|
|
@ -2,4 +2,4 @@
|
|||
volume = DEFAULT
|
||||
|
||||
[filters]
|
||||
paths = */tmp/krb5cc:*/etc/*.keytab
|
||||
paths = */tmp/krb5cc */etc/*.keytab
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ def read_config():
|
|||
'volume': None,
|
||||
}
|
||||
if cp.has_option('filters', 'paths'):
|
||||
config['path_filters'] = cp.get('filters', 'paths').split(':')
|
||||
config['path_filters'] = cp.get('filters', 'paths').split()
|
||||
if cp.has_option('general', 'volume'):
|
||||
config['volume'] = cp.get('general', 'volume').strip()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue