Skip to content
This repository has been archived by the owner on Aug 15, 2020. It is now read-only.

Commit

Permalink
remove single quote chars from config path
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaco committed Dec 2, 2015
1 parent be7fdcf commit 3373a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cliner/features_dir/read_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def enabled_modules():
if words[1] == 'None':
specs[words[0]] = None
else:
specs[words[0]] = os.path.expandvars(words[1]).strip('\"')
specs[words[0]] = os.path.expandvars(words[1]).strip('\"').strip('\'')

return specs

Expand Down

0 comments on commit 3373a5d

Please sign in to comment.