Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<addon
id="service.languagepreferencemanager"
name="Language Preference Manager"
version="0.0.7"
version="0.0.8"
provider-name="ace20022"
>
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="xbmc.python" version="2.25.0"/>
</requires>
<extension point="xbmc.service" library="default.py" start="login"/>
<extension point="xbmc.python.script" library="default.py">
Expand Down
Binary file modified icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions resources/lib/prefsettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@
LOG_ERROR = 1
LOG_INFO = 2
LOG_DEBUG = 3



class settings():

def log(self, level, msg):
if level <= self.logLevel:
if level == LOG_ERROR:
Expand Down Expand Up @@ -144,5 +141,5 @@ def readCustomPrefs(self):
self.custom_audio_prefs_on = True
if len(self.custom_subs) > 0:
self.custom_sub_prefs_on = True
if len(self.custom_condsub) >0:
if len(self.custom_condsub) > 0:
self.custom_condsub_prefs_on = True