From 467d1a50b35443fe94adf71ea9a72fbb1c6eb347 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 15 Apr 2011 11:28:01 +0000 Subject: [PATCH] removed debug message that could cause confusion --- lib/core/convert.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/core/convert.py b/lib/core/convert.py index 36add26a2..e13070ab7 100644 --- a/lib/core/convert.py +++ b/lib/core/convert.py @@ -111,8 +111,6 @@ def urlencode(value, safe="%&=", convall=False, limit=False): if limit and len(result) > URLENCODE_CHAR_LIMIT: if count >= len(URLENCODE_FAILSAFE_CHARS): - dbgMsg = "failed to fully shorten urlencoding value" - logger.debug(dbgMsg) break while count < len(URLENCODE_FAILSAFE_CHARS):