summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2015-12-16 18:34:18 +0100
committerJan Pokorný <jpokorny@redhat.com>2015-12-17 23:38:53 +0100
commitc1df8e1a0d97e3a9fa6a2b8a96244455006282cb (patch)
treea4b50e8dbae43138839c6686edcd9fd71fc989c3
parentd41ae9bd69ec2d2b1622e134ead4dedf21bf0907 (diff)
downloadclufter-c1df8e1a0d97e3a9fa6a2b8a96244455006282cb.tar.gz
clufter-c1df8e1a0d97e3a9fa6a2b8a96244455006282cb.tar.xz
clufter-c1df8e1a0d97e3a9fa6a2b8a96244455006282cb.zip
commands/cib2pcscmd: fix incorrect output proto nesting
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
-rw-r--r--commands/cib2pcscmd.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/commands/cib2pcscmd.py b/commands/cib2pcscmd.py
index b4d91be..03b2ff8 100644
--- a/commands/cib2pcscmd.py
+++ b/commands/cib2pcscmd.py
@@ -50,7 +50,9 @@ def cib2pcscmd(cmd_ctxt,
file_proto = protocols.plugins['file'].ensure_proto
return (
file_proto(input),
- cib2pcscmd_output(
- file_proto(output),
+ (
+ cib2pcscmd_output(
+ file_proto(output),
+ ),
),
)