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]
|
[project]
|
||||||
name = "wallman"
|
name = "wallman"
|
||||||
version = "1.5.1.1"
|
version = "1.5.1.2"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
|
{name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from main import main
|
from wallman.main import main
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from wallman_lib import ConfigValidity, WallpaperLogic
|
from wallman.wallman_lib import ConfigValidity, WallpaperLogic
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
validator: ConfigValidity = ConfigValidity()
|
validator: ConfigValidity = ConfigValidity()
|
||||||
|
|
|
@ -7,7 +7,7 @@ from apscheduler.schedulers.background import BackgroundScheduler
|
||||||
from apscheduler.triggers.cron import CronTrigger
|
from apscheduler.triggers.cron import CronTrigger
|
||||||
from typing import Dict, List
|
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.
|
# Setup Logging. NOTE: Declaration as a global variable is necessary to ensure correct functionality across multiple modules.
|
||||||
global logger
|
global logger
|
||||||
|
|
Loading…
Reference in a new issue