aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/processing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 7e6cd8ee..816fdd18 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -176,7 +176,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
all_prompts = p.batch_size * p.n_iter * [p.prompt]
if type(p.seed) == list:
- all_seeds = int(p.seed)
+ all_seeds = p.seed
else:
all_seeds = [int(p.seed + x) for x in range(len(all_prompts))]