@@ -75,7 +75,7 @@ def getTables(self):
7575 conf .db = self .getCurrentDb ()
7676
7777 if conf .db :
78- dbs = conf .db .split ("," )
78+ dbs = conf .db .split (',' )
7979 else :
8080 dbs = self .getDbs ()
8181
@@ -163,7 +163,7 @@ def getTables(self):
163163
164164 def searchTable (self ):
165165 foundTbls = {}
166- tblList = conf .tbl .split ("," )
166+ tblList = conf .tbl .split (',' )
167167 rootQuery = queries [DBMS .MSSQL ].search_table
168168 tblCond = rootQuery .inband .condition
169169 tblConsider , tblCondParam = self .likeOrExact ("table" )
@@ -172,7 +172,7 @@ def searchTable(self):
172172 conf .db = self .getCurrentDb ()
173173
174174 if conf .db :
175- enumDbs = conf .db .split ("," )
175+ enumDbs = conf .db .split (',' )
176176 elif not len (kb .data .cachedDbs ):
177177 enumDbs = self .getDbs ()
178178 else :
@@ -269,7 +269,7 @@ def searchColumn(self):
269269 whereTblsQuery = ""
270270 infoMsgTbl = ""
271271 infoMsgDb = ""
272- colList = conf .col .split ("," )
272+ colList = conf .col .split (',' )
273273
274274 if conf .excludeCol :
275275 colList = [_ for _ in colList if _ not in conf .excludeCol .split (',' )]
@@ -284,7 +284,7 @@ def searchColumn(self):
284284 conf .db = self .getCurrentDb ()
285285
286286 if conf .db :
287- enumDbs = conf .db .split ("," )
287+ enumDbs = conf .db .split (',' )
288288 elif not len (kb .data .cachedDbs ):
289289 enumDbs = self .getDbs ()
290290 else :
@@ -307,15 +307,15 @@ def searchColumn(self):
307307 foundCols [column ] = {}
308308
309309 if conf .tbl :
310- _ = conf .tbl .split ("," )
310+ _ = conf .tbl .split (',' )
311311 whereTblsQuery = " AND (" + " OR " .join ("%s = '%s'" % (tblCond , unsafeSQLIdentificatorNaming (tbl )) for tbl in _ ) + ")"
312312 infoMsgTbl = " for table%s '%s'" % ("s" if len (_ ) > 1 else "" , ", " .join (tbl for tbl in _ ))
313313
314314 if conf .db == CURRENT_DB :
315315 conf .db = self .getCurrentDb ()
316316
317317 if conf .db :
318- _ = conf .db .split ("," )
318+ _ = conf .db .split (',' )
319319 infoMsgDb = " in database%s '%s'" % ("s" if len (_ ) > 1 else "" , ", " .join (db for db in _ ))
320320 elif conf .excludeSysDbs :
321321 msg = "skipping system database%s '%s'" % ("s" if len (self .excludeDbsList ) > 1 else "" , ", " .join (db for db in self .excludeDbsList ))
0 commit comments