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,6 +11,9 @@ import StringIO
import os
import time
import unicodedata
try:
import xml.etree.cElementTree as etree
except ImportError:
import xml.etree.ElementTree as etree
from datetime import datetime

View file

@ -3,6 +3,9 @@
#################################################################################################
import shutil
try:
import xml.etree.cElementTree as etree
except ImportError:
import xml.etree.ElementTree as etree
import xbmc