Lots of changes in curacao

This commit is contained in:
Geoffrey Frogeye 2018-10-08 23:52:53 +02:00
parent 4bf544c9be
commit 3d24d97d51
16 changed files with 46 additions and 21 deletions

View file

@ -83,7 +83,8 @@ config.bind('T', None)
import os
dirname = os.path.dirname(__file__)
filename = os.path.join(dirname, 'theme.py')
exec(open(filename).read())
with open(filename) as file:
exec(file.read())
# Uncomment this to still load settings configured via autoconfig.yml
config.load_autoconfig()