From a6315f7829222c2ac5c63c72894c1235cf7fc4ed Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 12 Mar 2020 16:46:44 -0400 Subject: [PATCH] Fix default theme path with QRC --- src/backend/user_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/user_files.py b/src/backend/user_files.py index 5722376d..a793ba60 100644 --- a/src/backend/user_files.py +++ b/src/backend/user_files.py @@ -289,7 +289,7 @@ class Theme(DataFile): async def default_data(self) -> str: - async with aiofiles.open("src/themes/Midnight.qpl") as file: + async with aiofiles.open("../themes/Midnight.qpl") as file: return await file.read()