Skip to content

Commit

Permalink
Fix wrong module import (twice)
Browse files Browse the repository at this point in the history
  • Loading branch information
enen92 committed Mar 5, 2021
1 parent 19edbeb commit a3738de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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="plugin.library.node.editor" name="Library Node Editor" version="2.0.2" provider-name="Unfledged, Team-Kodi">
<addon id="plugin.library.node.editor" name="Library Node Editor" version="2.0.3" provider-name="Unfledged, Team-Kodi">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.unidecode" version="1.1.1"/>
Expand Down Expand Up @@ -41,7 +41,7 @@
<icon>icon.png</icon>
</assets>
<news>
2.0.2 (05/3/2021)
2.0.2 / 2.0.3 (05/3/2021)
- Fix wrong method import
</news>
</extension>
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.0.2 (05/3/2021)
2.0.2 / 2.0.3 (05/3/2021)
- Fix wrong method import

2.0.1 (03/3/2021)
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import sys
import os
import xbmc, xbmccvfs, xbmcaddon
import xbmc, xbmcvfs, xbmcaddon

ADDON = xbmcaddon.Addon()
ADDONID = ADDON.getAddonInfo('id')
Expand Down

0 comments on commit a3738de

Please sign in to comment.