aboutsummaryrefslogtreecommitdiffstats
path: root/modules/images.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-06-27 06:06:03 +0000
committerGitHub <noreply@github.com>2023-06-27 06:06:03 +0000
commitd35e24611172a49f7b3637c601dc0fb12c9d0326 (patch)
treee7915af4d068912cd8509f1638e05460445a5eea /modules/images.py
parentbedcd2f377a38ef4da58c11dbe222d32b954be2f (diff)
parent4147fd6b2f905f76c6bc20c3d9de2ea0842fa853 (diff)
downloadstable-diffusion-webui-gfx803-d35e24611172a49f7b3637c601dc0fb12c9d0326.tar.gz
stable-diffusion-webui-gfx803-d35e24611172a49f7b3637c601dc0fb12c9d0326.tar.bz2
stable-diffusion-webui-gfx803-d35e24611172a49f7b3637c601dc0fb12c9d0326.zip
Merge pull request #11227 from deckar01/10141-gradio-user-exif
Add Gradio User to Metadata
Diffstat (limited to 'modules/images.py')
-rw-r--r--modules/images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/images.py b/modules/images.py
index 7bbfc3e0..1906e2ab 100644
--- a/modules/images.py
+++ b/modules/images.py
@@ -372,8 +372,8 @@ class FilenameGenerator:
'hasprompt': lambda self, *args: self.hasprompt(*args), # accepts formats:[hasprompt<prompt1|default><prompt2>..]
'clip_skip': lambda self: opts.data["CLIP_stop_at_last_layers"],
'denoising': lambda self: self.p.denoising_strength if self.p and self.p.denoising_strength else NOTHING_AND_SKIP_PREVIOUS_TEXT,
+ 'user': lambda self: self.p.user,
'vae_filename': lambda self: self.get_vae_filename(),
-
}
default_time_format = '%Y%m%d%H%M%S'