minor: split up one-liner

This commit is contained in:
Stephen Mardson McQuay 2011-05-26 10:12:53 -06:00
parent 7392098ca8
commit 941f224f01
1 changed files with 2 additions and 1 deletions

View File

@ -107,7 +107,8 @@ if __name__ == '__main__':
pbar = ProgressBar(widgets = widgets, maxval = count)
pbar.start()
for i in xrange(count):
results.append(resultsq.get())
cur_result = resultsq.get()
results.append(cur_result)
pbar.update(i+1)
receive_end = time.time()
pbar.finish()