Minor update (added new warning message)

This commit is contained in:
Miroslav Stampar 2014-05-20 17:14:40 +02:00
parent 401f896175
commit babe49f086

View File

@ -2215,6 +2215,12 @@ def urlencode(value, safe="%&=-_", convall=False, limit=False, spaceplus=False):
if conf.get("direct"):
return value
if Backend.isDbms(DBMS.MSSQL) and not kb.tamperFunctions and any(ord(_) > 255 for _ in value):
warnMsg = "if you experience problems with "
warnMsg += "non-ASCII identifier names "
warnMsg += "you are advised to rerun with '--tamper=charunicodeencode'"
singleTimeWarnMessage(warnMsg)
count = 0
result = None if value is None else ""