diff options
Diffstat (limited to '')
-rw-r--r-- | portato/config_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/config_parser.py b/portato/config_parser.py index 37a32bf..e0bb15d 100644 --- a/portato/config_parser.py +++ b/portato/config_parser.py @@ -252,7 +252,7 @@ class ConfigParser: # look for an expression match = EXPRESSION.search(line) - if match: + if match: val = match.group("value") # find the boolean value |