mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
One more 2to3 baby step
This commit is contained in:
parent
7074365f8e
commit
2c270ed250
10 changed files with 20 additions and 20 deletions
|
|
@ -29,7 +29,7 @@ class ProgressBar(object):
|
|||
|
||||
def _convertSeconds(self, value):
|
||||
seconds = value
|
||||
minutes = seconds / 60
|
||||
minutes = seconds // 60
|
||||
seconds = seconds - (minutes * 60)
|
||||
|
||||
return "%.2d:%.2d" % (minutes, seconds)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue