summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-01 19:19:10 +0300
committermakkalot <makkalot@gmail.com>2008-06-01 19:19:10 +0300
commit5ff04c7b52d9f273bb307aa03346e05466d5e5b4 (patch)
tree56a5cb9f3bc87ee9abcd882c16f32289ec3ac903 /func
parenta5b1aac806dad3691a191fe9e13ba07d3f888b2f (diff)
downloadthird_party-func-5ff04c7b52d9f273bb307aa03346e05466d5e5b4.tar.gz
third_party-func-5ff04c7b52d9f273bb307aa03346e05466d5e5b4.tar.xz
third_party-func-5ff04c7b52d9f273bb307aa03346e05466d5e5b4.zip
fix the import not to fail
Diffstat (limited to 'func')
-rw-r--r--func/minion/modules/func_module.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/minion/modules/func_module.py b/func/minion/modules/func_module.py
index cb2970c..07b5443 100644
--- a/func/minion/modules/func_module.py
+++ b/func/minion/modules/func_module.py
@@ -15,7 +15,7 @@ import inspect
from func import logger
from func.config import read_config
from func.commonconfig import FuncdConfig
-from func.minion.modules.func_arg import * #the arg getter stuff
+from func.minion.func_arg import * #the arg getter stuff
class FuncModule(object):