From 2bbe0c9ba681b29f3050331b61b594b4bba93623 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 14 Oct 2010 15:23:42 +0000 Subject: [PATCH] bug fix for Ctrl+C --- lib/utils/resume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/resume.py b/lib/utils/resume.py index 4e89be0b4..c4ac429da 100644 --- a/lib/utils/resume.py +++ b/lib/utils/resume.py @@ -189,7 +189,7 @@ def resume(expression, payload): return "%s%s" % (resumedValue, finalValue) return None - except: + except ValueError: errMsg = "invalid resume value for expression: '%s'" % expression logger.error(errMsg) return None