diff --git a/lib/controller/checks.py b/lib/controller/checks.py index b75071114..7ed348c49 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -69,7 +69,7 @@ def unescape(string, dbms): "Sybase": Sybase.unescape } - if dbms in unescaper: + if dbms in unescaper and "WAITFOR DELAY " not in string: return unescaper[dbms](string) else: return string