mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-24 17:56:11 +00:00
Fix import error on ubuntu
For some reason, it doesn't seem to like making submodules available from within the __init__.py file
This commit is contained in:
parent
a9563119be
commit
0635990d67
2 changed files with 5 additions and 6 deletions
|
@ -10,7 +10,11 @@ import xbmcaddon
|
||||||
import clientinfo
|
import clientinfo
|
||||||
import read_embyserver as embyserver
|
import read_embyserver as embyserver
|
||||||
import connect.connectionmanager as connectionmanager
|
import connect.connectionmanager as connectionmanager
|
||||||
from dialog import ServerConnect, UsersConnect, LoginConnect, LoginManual, ServerManual
|
from dialog.serverconnect import ServerConnect
|
||||||
|
from dialog.usersconnect import UsersConnect
|
||||||
|
from dialog.loginconnect import LoginConnect
|
||||||
|
from dialog.loginmanual import LoginManual
|
||||||
|
from dialog.servermanual import ServerManual
|
||||||
|
|
||||||
##################################################################################################
|
##################################################################################################
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1 @@
|
||||||
# Dummy file to make this directory a package.
|
# Dummy file to make this directory a package.
|
||||||
from serverconnect import ServerConnect
|
|
||||||
from usersconnect import UsersConnect
|
|
||||||
from loginconnect import LoginConnect
|
|
||||||
from loginmanual import LoginManual
|
|
||||||
from servermanual import ServerManual
|
|
||||||
|
|
Loading…
Reference in a new issue