remove cython loading from the minion, all module loading is now in the

loader
This commit is contained in:
Thomas S Hatch 2011-05-25 18:43:21 -06:00
parent 2371f11e24
commit 0c18e39df9

View File

@ -42,15 +42,6 @@ class Minion(object):
Pass in the options dict
'''
self.opts = opts
if opts['cython_enable'] is True:
try:
import pyximport
pyximport.install()
except ImportError:
self.opts['logger'].info(
"Cython is enabled in options though it's not present in "
"the system path. Skipping Cython modules."
)
self.mod_opts = self.__prep_mod_opts()
self.functions, self.returners = self.__load_modules()
self.authenticate()