Adding another comment

This commit is contained in:
Miroslav Stampar 2014-04-12 12:50:45 +02:00
parent b5cca742e4
commit fd884ec67b

View File

@ -1006,6 +1006,10 @@ def parsePasswordHash(password):
return password
def cleanQuery(query):
"""
Switch all SQL statement (alike) keywords to upper case
"""
retVal = query
for sqlStatements in SQL_STATEMENTS.values():