summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-17 11:54:14 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-17 11:54:14 +0100
commitfbf800fec797a22db274fa30e1dd2a32556e1e5a (patch)
tree09bd24ece1449709098d571dea1631481a80e12a /cli
parent20e1149c49b7fa7f44cebc8c87bbb49ece251eeb (diff)
ugh
Diffstat (limited to 'cli')
-rw-r--r--cli/app/search/live.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py
index 99c339f..68b7275 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -458,6 +458,6 @@ class Listener:
self.rpc_client.send_pil_image("frame_{:05d}.png".format(i+1), meta, img_to_send, 'jpg')
send_time_total += time.time() - send_time
if (i % 100) == 0 or i == 1:
- print("gen: {:2f}, pil: {:2f}, save: {:2f}, resize: {:2f}, send: {:2f}".format(gen_time_total / i, to_pil_time_i / i, save_time_total / i, resize_time_total / i, send_time_total / i))
+ print("gen: {:2f}, pil: {:2f}, save: {:2f}, resize: {:2f}, send: {:2f}".format(gen_time_total / i, to_pil_time_total / i, save_time_total / i, resize_time_total / i, send_time_total / i))
self.rpc_client.send_status('processing', False)
self.sess.close()