Hotfix
This commit is contained in:
parent
942121daf3
commit
c274fc4a65
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "wallman"
|
||||
version = "1.5.1.1"
|
||||
version = "1.5.1.2"
|
||||
authors = [
|
||||
{name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
|
||||
]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from main import main
|
||||
from wallman.main import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
from wallman_lib import ConfigValidity, WallpaperLogic
|
||||
from wallman.wallman_lib import ConfigValidity, WallpaperLogic
|
||||
|
||||
def main():
|
||||
validator: ConfigValidity = ConfigValidity()
|
||||
|
|
|
@ -7,7 +7,7 @@ from apscheduler.schedulers.background import BackgroundScheduler
|
|||
from apscheduler.triggers.cron import CronTrigger
|
||||
from typing import Dict, List
|
||||
|
||||
from wallman_classes import ConfigError, ConfigGeneral, ConfigFile
|
||||
from wallman.wallman_classes import ConfigError, ConfigGeneral, ConfigFile
|
||||
|
||||
# Setup Logging. NOTE: Declaration as a global variable is necessary to ensure correct functionality across multiple modules.
|
||||
global logger
|
||||
|
|
Loading…
Reference in a new issue