From 1cf3508e9ae12cc840fe2f991bb587a3eb4fc7fa Mon Sep 17 00:00:00 2001 From: Overwatch Date: Mon, 17 Nov 2014 12:58:15 +0100 Subject: [PATCH] removed forgotten debug print-out --- core/app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/app.py b/core/app.py index dd68a4a..0ac8f2f 100644 --- a/core/app.py +++ b/core/app.py @@ -17,7 +17,6 @@ prefix = textui.prefix # -------------------------------------------------- def _parse(data, dtype): - print('### called _parse(%s, %s)' %(repr(data), repr(dtype))) if dtype == 'str': if data.startswith('"') and data.endswith('"'): value = data[1:-1].replace('\\"', '"')