Merge branch '2.3.x'

This commit is contained in:
David Lord 2023-08-16 13:35:46 -07:00
commit 3237fff4b8
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -302,7 +302,7 @@ class ScriptInfo:
else:
if self.app_import_path:
path, name = (
re.split(r":(?![\\/])", self.app_import_path, 1) + [None]
re.split(r":(?![\\/])", self.app_import_path, maxsplit=1) + [None]
)[:2]
import_name = prepare_import(path)
app = locate_app(import_name, name)