Skip to content

Commit a3738de

Browse files
committed
Fix wrong module import (twice)
1 parent 19edbeb commit a3738de

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

addon.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="plugin.library.node.editor" name="Library Node Editor" version="2.0.2" provider-name="Unfledged, Team-Kodi">
2+
<addon id="plugin.library.node.editor" name="Library Node Editor" version="2.0.3" provider-name="Unfledged, Team-Kodi">
33
<requires>
44
<import addon="xbmc.python" version="3.0.0"/>
55
<import addon="script.module.unidecode" version="1.1.1"/>
@@ -41,7 +41,7 @@
4141
<icon>icon.png</icon>
4242
</assets>
4343
<news>
44-
2.0.2 (05/3/2021)
44+
2.0.2 / 2.0.3 (05/3/2021)
4545
- Fix wrong method import
4646
</news>
4747
</extension>

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2.0.2 (05/3/2021)
1+
2.0.2 / 2.0.3 (05/3/2021)
22
- Fix wrong method import
33

44
2.0.1 (03/3/2021)

resources/lib/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import sys
33
import os
4-
import xbmc, xbmccvfs, xbmcaddon
4+
import xbmc, xbmcvfs, xbmcaddon
55

66
ADDON = xbmcaddon.Addon()
77
ADDONID = ADDON.getAddonInfo('id')

0 commit comments

Comments
 (0)