Skip to content

Commit

Permalink
fix print
Browse files Browse the repository at this point in the history
Former-commit-id: b539e1a
Former-commit-id: 0501d01
  • Loading branch information
daniel committed Jan 30, 2016
1 parent 3cff3da commit f1302fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corpkit/multiprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def best_num_parallel(num_cores, num_queries):
thetime = strftime("%H:%M:%S", localtime())
if terminal:
with terminal.location(0, terminal.height):
print '\n\n%s: Finished! %d unique results, %d total.%s' % (thetime, len(out.results.columns), out.totals.sum(), '\n' * len(ds))
print '\n\n%s: Finished! %d unique results, %d total.' % (thetime, len(out.results.columns), out.totals.sum())
else:
print '\n\n%s: Finished! %d unique results, %d total.' % (thetime, len(out.results.columns), out.totals.sum())
if quicksave:
Expand Down

0 comments on commit f1302fc

Please sign in to comment.