Python3 compatability
This commit is contained in:
Kevin Chung
2017-03-08 00:45:33 -05:00
parent 05ff3afe8c
commit 41eaa56232
4 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ import os
def init_plugins(app):
modules = glob.glob(os.path.dirname(__file__) + "/*")
blacklist = {'keys', 'challenges'}
blacklist = {'keys', 'challenges', '__pycache__'}
for module in modules:
module_name = os.path.basename(module)
if os.path.isdir(module) and module_name not in blacklist: