fix path decoding
This commit is contained in:
@@ -4,8 +4,8 @@ import os
|
||||
|
||||
|
||||
settings = Config("config/config.yaml")
|
||||
if not os.path.exists(settings.database.temp):
|
||||
os.mkdir(settings.database.temp)
|
||||
if not os.path.exists(settings.database.temp.expanduser()):
|
||||
settings.database.temp.expanduser().mkdir(parents=True, exist_ok=True)
|
||||
from .utils.icon import Icon
|
||||
|
||||
__version__ = "0.2.1"
|
||||
|
||||
Reference in New Issue
Block a user