From 67d47266e20799faf155496b30ce7c4d88d511e9 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Thu, 28 Jan 2016 15:51:17 +0700 Subject: [PATCH] fix: merging would fail without this with ``merge_cli`` not defined. --- bin/compose | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compose b/bin/compose index 14b4f25..c8bb035 100755 --- a/bin/compose +++ b/bin/compose @@ -57,7 +57,8 @@ export DEFAULT_COMPOSE_FILE ## Merge YAML files ## -_merge_yaml_common_code=" +export _merge_yaml_common_code=" + import sys import yaml @@ -141,7 +142,6 @@ def merge_cli(*args): if c is not None: print '%s' % yaml.dump(c, default_flow_style=False) - "