diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-04 09:36:41 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-04 09:36:41 +0000 |
commit | 15322e1b1a9e31edcc2f7d72a32d02365058737d (patch) | |
tree | c2a9284d7cf198210895ff80f7c0ce797f6675f0 | |
parent | 48fae7ccdc2fe2d2ba8e8cfcb17b56028734e570 (diff) | |
download | stable-diffusion-webui-gfx803-15322e1b1a9e31edcc2f7d72a32d02365058737d.tar.gz stable-diffusion-webui-gfx803-15322e1b1a9e31edcc2f7d72a32d02365058737d.tar.bz2 stable-diffusion-webui-gfx803-15322e1b1a9e31edcc2f7d72a32d02365058737d.zip |
repair old handler for postprocessing API
-rw-r--r-- | modules/postprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/postprocessing.py b/modules/postprocessing.py index 3c85a74c..d166f859 100644 --- a/modules/postprocessing.py +++ b/modules/postprocessing.py @@ -153,4 +153,4 @@ def run_extras(extras_mode, resize_mode, image, image_folder, input_dir, output_ },
})
- return run_postprocessing(extras_mode, image, image_folder, input_dir, output_dir, show_extras_results, *args, save_output=save_output)
+ return run_postprocessing("", extras_mode, image, image_folder, input_dir, output_dir, show_extras_results, *args, save_output=save_output)
|