mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 04:45:49 +01:00
don't need to encode here
This commit is contained in:
parent
72c77fb33a
commit
db93e40f59
@ -15,10 +15,10 @@ def openSettings():
|
|||||||
__Addon.openSettings()
|
__Addon.openSettings()
|
||||||
|
|
||||||
def log(message,loglevel=xbmc.LOGDEBUG):
|
def log(message,loglevel=xbmc.LOGDEBUG):
|
||||||
xbmc.log(encode(__addon_id__ + "-" + __Addon.getAddonInfo('version') + ": " + message),level=loglevel)
|
xbmc.log(__addon_id__ + "-" + __Addon.getAddonInfo('version') + ": " + message,level=loglevel)
|
||||||
|
|
||||||
def showNotification(message):
|
def showNotification(message):
|
||||||
xbmcgui.Dialog().notification(encode(getString(30010)),encode(message),time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/resources/images/icon.png"))
|
xbmcgui.Dialog().notification(getString(30010),message,time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/resources/images/icon.png"))
|
||||||
|
|
||||||
def getSetting(name):
|
def getSetting(name):
|
||||||
return __Addon.getSetting(name)
|
return __Addon.getSetting(name)
|
||||||
@ -37,12 +37,3 @@ def getRegionalTimestamp(date_time,dateformat=['dateshort']):
|
|||||||
|
|
||||||
return result.strip()
|
return result.strip()
|
||||||
|
|
||||||
def encode(string):
|
|
||||||
result = ''
|
|
||||||
|
|
||||||
try:
|
|
||||||
result = string.encode('UTF-8','replace')
|
|
||||||
except UnicodeDecodeError:
|
|
||||||
result = 'Unicode Error'
|
|
||||||
|
|
||||||
return result
|
|
||||||
|
Loading…
Reference in New Issue
Block a user