Merge pull request #14640 from WebDev9000/replace-hashtags-in-filenames

Add # to the invalid_filename_chars list
This commit is contained in:
AUTOMATIC1111 2024-01-20 10:29:42 +03:00 committed by GitHub
commit 58a142b56b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ def resize_image(resize_mode, im, width, height, upscaler_name=None):
return res return res
invalid_filename_chars = '<>:"/\\|?*\n\r\t' invalid_filename_chars = '#<>:"/\\|?*\n\r\t'
invalid_filename_prefix = ' ' invalid_filename_prefix = ' '
invalid_filename_postfix = ' .' invalid_filename_postfix = ' .'
re_nonletters = re.compile(r'[\s' + string.punctuation + ']+') re_nonletters = re.compile(r'[\s' + string.punctuation + ']+')