infotext.py: add support for old modules.generation_parameters_copypaste name

This commit is contained in:
AUTOMATIC1111 2024-01-01 13:52:37 +03:00
parent 003b91f083
commit c5496c7646
1 changed files with 3 additions and 0 deletions

View File

@ -4,12 +4,15 @@ import io
import json
import os
import re
import sys
import gradio as gr
from modules.paths import data_path
from modules import shared, ui_tempdir, script_callbacks, processing
from PIL import Image
sys.modules['modules.generation_parameters_copypaste'] = sys.modules[__name__] # alias for old name
re_param_code = r'\s*(\w[\w \-/]+):\s*("(?:\\.|[^\\"])+"|[^,]*)(?:,|$)'
re_param = re.compile(re_param_code)
re_imagesize = re.compile(r"^(\d+)x(\d+)$")