* convert strings.xml to strings.po for improved translation support * set blank heading for error * i18n: map ints to strings for readability/maintenance * simple_logging - add prefix, add log.warning * remove unneccesary Addon() instances * uniform whitespace * remove log warning, i18n log failure as error * settings - create as needed
14 lines
295 B
Python
14 lines
295 B
Python
# Gnu General Public License - see LICENSE.TXT
|
|
|
|
from resources.lib.simple_logging import SimpleLogging
|
|
from resources.lib.functions import mainEntryPoint
|
|
|
|
log = SimpleLogging('default')
|
|
|
|
log.info("About to enter mainEntryPoint()")
|
|
|
|
mainEntryPoint()
|
|
|
|
# clear done and exit.
|
|
# sys.modules.clear()
|