Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spelling: AptdaemonHandler #11405

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/service.xbmc.versioncheck/lib/aptdeamonhandler.py
Expand Up @@ -26,7 +26,7 @@
except:
log('python apt import error')

class AptdeamonHandler:
class AptdaemonHandler:

def __init__(self):
self.aptclient = client.AptClient()
Expand Down
6 changes: 3 additions & 3 deletions addons/service.xbmc.versioncheck/service.py
Expand Up @@ -62,9 +62,9 @@ def _versionchecklinux(packages):
handler = False
result = False
try:
# try aptdeamon first
from lib.aptdeamonhandler import AptdeamonHandler
handler = AptdeamonHandler()
# try aptdaemon first
from lib.aptdaemonhandler import AptdaemonHandler
handler = AptdaemonHandler()
except:
# fallback to shell
# since we need the user password, ask to check for new version first
Expand Down