summaryrefslogtreecommitdiffstats
path: root/command_manager.py
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-04-01 14:10:14 +0200
committerJan Pokorný <jpokorny@redhat.com>2014-04-01 14:10:14 +0200
commitd560abca52d05b78c4cf1def0b92652b0e931769 (patch)
tree909109af03abc94bad70bf3810c9508388b8646f /command_manager.py
parentccba7aaeaa7f3f60e987811f9972af77b20c683a (diff)
downloadclufter-d560abca52d05b78c4cf1def0b92652b0e931769.tar.gz
clufter-d560abca52d05b78c4cf1def0b92652b0e931769.tar.xz
clufter-d560abca52d05b78c4cf1def0b92652b0e931769.zip
Refactor: move functional-paradigm helpers utils -> utils_func
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'command_manager.py')
-rw-r--r--command_manager.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/command_manager.py b/command_manager.py
index 368e053..0055e86 100644
--- a/command_manager.py
+++ b/command_manager.py
@@ -12,11 +12,11 @@ from .command import commands, CommandAlias
from .error import ClufterError, ClufterPlainError, \
EC
from .plugin_registry import PluginManager
-from .utils import apply_preserving_depth, \
- apply_aggregation_preserving_depth, \
- apply_intercalate, \
- bifilter, \
- make_options
+from .utils import make_options
+from .utils_func import apply_preserving_depth, \
+ apply_aggregation_preserving_depth, \
+ apply_intercalate, \
+ bifilter
log = logging.getLogger(__name__)