diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-19 15:40:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-19 15:40:53 +0000 |
commit | f510a2277ee3641564c13841b04b50293384526f (patch) | |
tree | 361420b2cd639dbd9f1fdbbe4774da0aee7a535a /modules/shared.py | |
parent | f894dd552f68bea27476f1f360ab8e79f3a65b4f (diff) | |
parent | 42fbda83bb9830af18187fddb50c1bedd01da502 (diff) | |
download | stable-diffusion-webui-gfx803-f510a2277ee3641564c13841b04b50293384526f.tar.gz stable-diffusion-webui-gfx803-f510a2277ee3641564c13841b04b50293384526f.tar.bz2 stable-diffusion-webui-gfx803-f510a2277ee3641564c13841b04b50293384526f.zip |
Merge pull request #3086 from discus0434/master
Add settings for multi-layer structure hypernetworks
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index f7d66870..faede821 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -137,7 +137,7 @@ class State: self.job_no += 1
self.sampling_step = 0
self.current_image_sampling_step = 0
-
+
def get_job_timestamp(self):
return datetime.datetime.now().strftime("%Y%m%d%H%M%S") # shouldn't this return job_timestamp?
|