You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
594 B
Python

from os import listdir
from core.main import *
from utils.logging.log import *
import commands
def loadCommands(func):
for filename in listdir('commands'):
if filename.endswith('.py') and filename != "__init__.py":
commandName = filename[0:-3]
className = commandName.capitalize()
try:
__import__('commands.%s' % commandName)
eval('commands.%s.%s(func)' % (commandName, className))
except Exception as err:
error("Exception while loading command %s:\n%s" % (commandName, err))