mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 14:11:29 +00:00
code review part 3
This commit is contained in:
@@ -1621,7 +1621,7 @@ def beep():
|
||||
try:
|
||||
audio = file(dev, 'wb')
|
||||
|
||||
for i in xrange(250):
|
||||
for _ in xrange(250):
|
||||
audio.write(chr(32) * 4)
|
||||
audio.write(chr(0) * 4)
|
||||
|
||||
|
||||
@@ -415,7 +415,7 @@ class XMLDump:
|
||||
|
||||
logger.info("Table '%s.%s' dumped to XML file" % (db, table))
|
||||
|
||||
def dbColumns(self, dbColumns, _, dbs):
|
||||
def dbColumns(self, dbColumns, colConsider, dbs):
|
||||
'''
|
||||
Adds information about the columns
|
||||
'''
|
||||
|
||||
Reference in New Issue
Block a user