Skip to content

Commit 92dfb0f

Browse files
committed
Minor patch
1 parent c2dce66 commit 92dfb0f

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

plugins/dbms/firebird/syntax.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
See the file 'doc/COPYING' for copying permission
66
"""
77

8+
from lib.core.common import Backend
89
from lib.core.common import isDBMSVersionAtLeast
910
from plugins.generic.syntax import Syntax as GenericSyntax
1011

plugins/dbms/sqlite/syntax.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import binascii
99

10+
from lib.core.common import Backend
1011
from lib.core.common import isDBMSVersionAtLeast
1112
from lib.core.settings import UNICODE_ENCODING
1213
from plugins.generic.syntax import Syntax as GenericSyntax

tamper/space2mysqlblank.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def tamper(payload, **kwargs):
3333
3434
>>> random.seed(0)
3535
>>> tamper('SELECT id FROM users')
36-
'SELECT%A0id%0BFROM%0Cusers'
36+
'SELECT%0Bid%0DFROM%0Cusers'
3737
"""
3838

3939
# ASCII table:

0 commit comments

Comments
 (0)