Add import for extra_local configuration in extra.py

This commit is contained in:
bboerni2 2025-09-23 13:00:55 +02:00
parent 97ddc0cce8
commit 30312e3760

View file

@ -47,3 +47,8 @@
# from datetime import datetime # from datetime import datetime
# now = datetime.now().strftime("%d/%m/%Y %H:%M:%S") # now = datetime.now().strftime("%d/%m/%Y %H:%M:%S")
# BANNER_TOP = f'<marquee width="200px">This instance started on {now}.</marquee>' # BANNER_TOP = f'<marquee width="200px">This instance started on {now}.</marquee>'
try:
from .extra_local import *
except ImportError:
pass