Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4f299f2

Browse files
committed
removed timeout keyword which is not supported on linux build
1 parent 6762f59 commit 4f299f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/dbms/firebird/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def connect(self):
5151
self.checkFileDb()
5252

5353
try:
54-
self.connector = kinterbasdb.connect(host=self.hostname, database=self.db, user=self.user, password=self.password, timeout={'period': conf.timeout})
54+
self.connector = kinterbasdb.connect(host=self.hostname, database=self.db, user=self.user, password=self.password)
5555
except kinterbasdb.OperationalError, msg:
5656
raise sqlmapConnectionException, msg[1]
5757

0 commit comments

Comments
 (0)