From 239da2ef69ec1f19754fbb0fc2d29fd08933910b Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Tue, 28 Jan 2014 09:51:33 +0000 Subject: [PATCH] Add missing return value for filename check Oh my, how embarrassing. --- fig/cli/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fig/cli/command.py b/fig/cli/command.py index 9641a05e6..c60020d75 100644 --- a/fig/cli/command.py +++ b/fig/cli/command.py @@ -69,4 +69,4 @@ If it's at a non-standard location, specify the URL with the DOCKER_HOST environ return os.path.join(self.base_dir, 'fig.yaml') else: - os.path.join(self.base_dir, 'fig.yml') + return os.path.join(self.base_dir, 'fig.yml')