mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-03 06:46:12 +00:00
Fix tests
This commit is contained in:
parent
53c887d354
commit
390c1d5de8
4 changed files with 9 additions and 7 deletions
|
@ -4,9 +4,10 @@ from __future__ import division, absolute_import, print_function, unicode_litera
|
|||
##################################################################################################
|
||||
|
||||
from six import iteritems
|
||||
from kodi_six import xbmc, xbmcgui
|
||||
from kodi_six import xbmcgui
|
||||
|
||||
from ..helper import LazyLogger
|
||||
from ..helper.utils import kodi_version
|
||||
|
||||
##################################################################################################
|
||||
|
||||
|
@ -30,7 +31,7 @@ class UsersConnect(xbmcgui.WindowXMLDialog):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
||||
self.kodi_version = int(xbmc.getInfoLabel('System.BuildVersion')[:2])
|
||||
self.kodi_version = kodi_version()
|
||||
xbmcgui.WindowXMLDialog.__init__(self, *args, **kwargs)
|
||||
|
||||
def set_args(self, **kwargs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue