mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2024-11-26 09:53:17 +01:00
Merge pull request #87 from reduxionist/fix/use-absolute-path-to-config
Fixes error locating config if not run from src dir
This commit is contained in:
commit
98f20e7e40
@ -55,7 +55,8 @@ class ZSpotify:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def load_config(cls) -> None:
|
def load_config(cls) -> None:
|
||||||
with open(CONFIG_FILE_PATH, encoding='utf-8') as config_file:
|
app_dir = os.path.dirname(__file__)
|
||||||
|
with open(os.path.join(app_dir, CONFIG_FILE_PATH), encoding='utf-8') as config_file:
|
||||||
cls.CONFIG = json.load(config_file)
|
cls.CONFIG = json.load(config_file)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
Loading…
Reference in New Issue
Block a user