removed debug message that could cause confusion

This commit is contained in:
Miroslav Stampar 2011-04-15 11:28:01 +00:00
parent 8c6f7c7d5f
commit 467d1a50b3

View File

@ -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):