Skip to content
This repository was archived by the owner on Dec 27, 2019. It is now read-only.

Commit 78795b6

Browse files
committed
Merge branch 'hotfix/0.6.1'
2 parents a6b731d + e22886d commit 78795b6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

installer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self):
3131
# Connect to the PackageKit session interface.
3232
bus = dbus.SessionBus()
3333
self.__name = dbus.service.BusName("org.sleepingscats.PiAvSwitchController", bus)
34-
kit = bus.get_object("org.freedesktop.PackageKit", "/org/freedeskt0op/PackageKit")
34+
kit = bus.get_object("org.freedesktop.PackageKit", "/org/freedesktop/PackageKit")
3535

3636
# Get the package installation query method.
3737
query = dbus.Interface(kit, "org.freedesktop.PackageKit.Query")
@@ -63,6 +63,6 @@ def install() -> None:
6363
log.info("Performing first time or update installation...")
6464

6565
installer = _Installer()
66-
if installer.check:
66+
if installer.check():
6767
log.info("Installing required dependencies...")
6868
installer.install()

piavswictrl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from state import State
88

9-
__version__ = "0.6.0"
9+
__version__ = "0.6.1"
1010

1111

1212
def _do_install() -> None:

0 commit comments

Comments
 (0)