Skip to content
Merged
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
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.13" provider-name="A Talented Community">
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.14" provider-name="A Talented Community">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.six" version="1.11.0"/>
Expand All @@ -9,7 +9,7 @@
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<news>
[fix] stream language
[fix] logging in Kodi 19
</news>
<assets>
<icon>icon.png</icon>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.0.14
[fix] logging in Kodi 19

2.0.13
[fix] stream language

Expand Down
2 changes: 1 addition & 1 deletion resources/lib/twitch/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self):
def info(self, message):
message = prep_log_message(message)
if xbmc:
self._log(message, xbmc.LOGNOTICE)
self._log(message, xbmc.LOGINFO)
else:
self._log.info(message)

Expand Down