Working on bugs with getting system to go through initialization sanely.

This commit is contained in:
Griatch 2015-01-08 16:54:50 +01:00
parent 33a42d06c5
commit f15e05c247
3 changed files with 1 additions and 8 deletions

View file

@ -135,7 +135,6 @@ def _cache_lockfuncs():
global _LOCKFUNCS
_LOCKFUNCS = {}
for modulepath in settings.LOCK_FUNC_MODULES:
modulepath = utils.pypath_to_realpath(modulepath)
mod = utils.mod_import(modulepath)
if mod:
for tup in (tup for tup in inspect.getmembers(mod) if callable(tup[1])):