mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Some PEP8 related style cleaning
This commit is contained in:
parent
6cfa9cb0b3
commit
ca3d35a878
61 changed files with 176 additions and 172 deletions
|
|
@ -32,7 +32,7 @@ class DNSQuery(object):
|
|||
j = ord(raw[i])
|
||||
|
||||
while j != 0:
|
||||
self._query += raw[i+1:i+j+1] + '.'
|
||||
self._query += raw[i + 1:i + j + 1] + '.'
|
||||
i = i + j + 1
|
||||
j = ord(raw[i])
|
||||
|
||||
|
|
@ -137,4 +137,3 @@ if __name__ == "__main__":
|
|||
finally:
|
||||
if server:
|
||||
server._running = False
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue