This commit is contained in:
2026-05-09 09:40:08 -04:00
parent a88b409a8a
commit b099af9d55

2
qt.py
View File

@@ -3998,10 +3998,12 @@ class BalCalendar:
@staticmethod
def open_with_default_app(calendar_app, path):
_logger.debug("opening calendar app")
try:
subprocess.check_call([calendar_app, path])
return True
except Exception as _e:
_logger.error(f"starting calendar app linux failed:{e}")
try:
import os
os.startfile(path)