Adapt time
Browse files
app.py
CHANGED
@@ -169,7 +169,7 @@ def redraw(
|
|
169 |
minutes = minutes - (hours * 60)
|
170 |
return [
|
171 |
output_image,
|
172 |
-
("Start again to get a different result. " if is_randomize_seed else "") + "The
|
173 |
input_image
|
174 |
]
|
175 |
|
|
|
169 |
minutes = minutes - (hours * 60)
|
170 |
return [
|
171 |
output_image,
|
172 |
+
("Start again to get a different result. " if is_randomize_seed else "") + "The image have been generated in " + ((str(hours) + " h, ") if hours != 0 else "") + ((str(minutes) + " min, ") if hours != 0 or minutes != 0 else "") + str(secondes) + " sec." + limitation,
|
173 |
input_image
|
174 |
]
|
175 |
|