mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-14 20:35:48 +01:00
part of #133
This commit is contained in:
parent
701a1831bf
commit
68093b2130
@ -3,9 +3,18 @@ import xbmcgui
|
|||||||
import xbmcvfs
|
import xbmcvfs
|
||||||
import resources.lib.tinyurl as tinyurl
|
import resources.lib.tinyurl as tinyurl
|
||||||
import resources.lib.utils as utils
|
import resources.lib.utils as utils
|
||||||
|
|
||||||
|
#don't die on import error yet, these might not even get used
|
||||||
|
try:
|
||||||
import dropbox
|
import dropbox
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
try:
|
||||||
from resources.lib.pydrive.auth import GoogleAuth
|
from resources.lib.pydrive.auth import GoogleAuth
|
||||||
from resources.lib.pydrive.drive import GoogleDrive
|
from resources.lib.pydrive.drive import GoogleDrive
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
class DropboxAuthorizer:
|
class DropboxAuthorizer:
|
||||||
APP_KEY = ""
|
APP_KEY = ""
|
||||||
|
Loading…
Reference in New Issue
Block a user