mirror of
https://github.com/robweber/xbmcbackup.git
synced 2025-06-23 02:54:34 +02:00
added message to create Dropbox key/secret
This commit is contained in:
@ -64,6 +64,10 @@ class DropboxFileSystem(Vfs):
|
||||
client = None
|
||||
|
||||
def __init__(self):
|
||||
if(APP_KEY == '' or APP_SECRET == ''):
|
||||
xbmcgui.Dialog().ok(utils.getString(30010),utils.getString(30058),utils.getString(30059))
|
||||
return
|
||||
|
||||
user_token_key,user_token_secret = self.getToken()
|
||||
|
||||
sess = session.DropboxSession(APP_KEY,APP_SECRET,"app_folder")
|
||||
|
Reference in New Issue
Block a user