Don't run callback if a callback is not set

This commit is contained in:
Matt Martz 2014-04-28 14:11:47 -05:00
parent 395553f089
commit 557e662a6c
1 changed files with 4 additions and 2 deletions

View File

@ -784,6 +784,7 @@ class Speedtest(object):
while thread.isAlive():
thread.join(timeout=0.1)
finished.append(sum(thread.result))
if callback:
callback(thread.i, url_count, end=True)
del thread
@ -834,6 +835,7 @@ class Speedtest(object):
while thread.isAlive():
thread.join(timeout=0.1)
finished.append(thread.result)
if callback:
callback(thread.i, size_count, end=True)
del thread