From 08e95af197f67ad48c94d7f6b5f209182c622426 Mon Sep 17 00:00:00 2001 From: Overwatch Date: Sun, 8 Feb 2015 14:45:22 +0100 Subject: [PATCH] fixes #1 --- core/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/app.py b/core/app.py index 051961f..9ef69cb 100644 --- a/core/app.py +++ b/core/app.py @@ -20,6 +20,8 @@ def _parse(data, dtype): if dtype == 'str': if data.startswith('"') and data.endswith('"'): value = data[1:-1].replace('\\"', '"') + elif data.startswith('\'') and data.endswith('\''): + value = data[1:-1].replace('\\\'', '\'') else: raise RuntimeError