From 9975ff8d17948a2ed2344c86ba4c46ea73eb3913 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 30 Nov 2011 19:26:03 +0000 Subject: [PATCH] minor update --- lib/core/option.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/core/option.py b/lib/core/option.py index 0209f8562..42cf3687b 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1333,6 +1333,9 @@ def __cleanupOptions(): if conf.code: conf.code = int(conf.code) + if conf.csvDel: + conf.csvDel = conf.csvDel.decode('string_escape') # e.g. '\\t' -> '\t' + threadData = getCurrentThreadData() threadData.reset()