fix yesno() function params

This commit is contained in:
Rob Weber 2021-07-06 08:48:05 -05:00
parent aa1421876b
commit 4c99f43340

View File

@ -14,7 +14,7 @@ LAUNCHER = 4
def authorize_cloud(cloudProvider): def authorize_cloud(cloudProvider):
# drobpox # dropbox
if(cloudProvider == 'dropbox'): if(cloudProvider == 'dropbox'):
authorizer = DropboxAuthorizer() authorizer = DropboxAuthorizer()
@ -26,7 +26,7 @@ def authorize_cloud(cloudProvider):
def remove_auth(): def remove_auth():
# triggered from settings.xml - asks if user wants to delete OAuth token information # triggered from settings.xml - asks if user wants to delete OAuth token information
shouldDelete = xbmcgui.Dialog().yesno(utils.getString(30093), utils.getString(30094), utils.getString(30095), autoclose=7000) shouldDelete = xbmcgui.Dialog().yesno(utils.getString(30093), '%s\n%s' % (utils.getString(30094), utils.getString(30095)), autoclose=7000)
if(shouldDelete): if(shouldDelete):
# delete any of the known token file types # delete any of the known token file types
@ -77,7 +77,6 @@ if(mode == -1):
# check if program should be run # check if program should be run
if(mode != -1): if(mode != -1):
# run the profile backup
backup = XbmcBackup() backup = XbmcBackup()
if(mode == SETTINGS): if(mode == SETTINGS):
@ -101,7 +100,6 @@ if(mode != -1):
editor.copySimpleConfig() editor.copySimpleConfig()
elif(backup.remoteConfigured()): elif(backup.remoteConfigured()):
# if mode was RESTORE # if mode was RESTORE
if(mode == RESTORE): if(mode == RESTORE):
# get list of valid restore points # get list of valid restore points