Merge pull request #44 from SpootDev/master

This commit is contained in:
angelblue05 2016-06-28 18:44:03 -05:00 committed by GitHub
commit e3f71273e8
2 changed files with 8 additions and 2 deletions

View file

@ -11,7 +11,10 @@ import StringIO
import os
import time
import unicodedata
import xml.etree.ElementTree as etree
try:
import xml.etree.cElementTree as etree
except ImportError:
import xml.etree.ElementTree as etree
from datetime import datetime
import xbmc

View file

@ -3,7 +3,10 @@
#################################################################################################
import shutil
import xml.etree.ElementTree as etree
try:
import xml.etree.cElementTree as etree
except ImportError:
import xml.etree.ElementTree as etree
import xbmc
import xbmcaddon