summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-12-19 20:17:01 +0100
committerJan Pokorný <jpokorny@redhat.com>2015-01-09 10:21:23 +0100
commit34fc126b5ffd417d2cc601b81f7f976e2a5649ef (patch)
tree8f1f749d954c0e8f2df8ad57bbf25511b4cc5571
parent567e5686fc5713ba8163f42400fee9c9346851d6 (diff)
downloadclufter-34fc126b5ffd417d2cc601b81f7f976e2a5649ef.tar.gz
clufter-34fc126b5ffd417d2cc601b81f7f976e2a5649ef.tar.xz
clufter-34fc126b5ffd417d2cc601b81f7f976e2a5649ef.zip
formats/command: move to ext-plugins/lib-general/formats
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
-rw-r--r--ext-plugins/lib-general/formats/command.py (renamed from formats/command.py)0
-rw-r--r--tests/formats/command.py3
2 files changed, 2 insertions, 1 deletions
diff --git a/formats/command.py b/ext-plugins/lib-general/formats/command.py
index 7d2b51b..7d2b51b 100644
--- a/formats/command.py
+++ b/ext-plugins/lib-general/formats/command.py
diff --git a/tests/formats/command.py b/tests/formats/command.py
index e820d6e..3773bfc 100644
--- a/tests/formats/command.py
+++ b/tests/formats/command.py
@@ -9,7 +9,8 @@ from os.path import join, dirname as d; execfile(join(d(d((__file__))), '_go'))
from unittest import TestCase
-from .formats.command import command
+from .format_manager import FormatManager
+command = FormatManager.init_lookup('command').formats['command']
class FormatsCommandTestCase(TestCase):