add [datetime] to image file name pattern

This commit is contained in:
tateisu 2022-09-26 11:50:11 +09:00 committed by AUTOMATIC1111
parent e61da308ba
commit b39f06cea7

View File

@ -295,6 +295,7 @@ def apply_filename_pattern(x, p, seed, prompt):
x = x.replace("[model_hash]", shared.sd_model.sd_model_hash)
x = x.replace("[date]", datetime.date.today().isoformat())
x = x.replace("[datetime]", re.sub(r'(\.\d+|\D+)', "", datetime.datetime.now().isoformat()))
x = x.replace("[job_timestamp]", shared.state.job_timestamp)
if cmd_opts.hide_ui_dir_config: