diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-08 11:18:05 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-08 11:18:05 +0200 |
| commit | fb982a1140a67e28f93a1f76bd10da2913466e47 (patch) | |
| tree | 58d1753c8d91fe546645767efb7cd863e7d80cd5 | |
| parent | 1efd2b67127b7a1c1b3840e33304d4f22827a2eb (diff) | |
test...
| -rw-r--r-- | live-mogrify.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/live-mogrify.py b/live-mogrify.py index c106045..c58725d 100644 --- a/live-mogrify.py +++ b/live-mogrify.py @@ -282,10 +282,12 @@ def process_live_input(opt, data_opt, rpc_client, model): while True: i += 1 if i >= opt.how_many: + print("generated {} images, exiting".format(i)) break data = load_frame(opt, i) if data is None: + print("got no frame, exiting") break if data_opt.load_checkpoint is True: |
