Просмотр исходного кода

Add missing return value for filename check

Oh my, how embarrassing.
Chris Adams 12 лет назад
Родитель
Сommit
239da2ef69
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      fig/cli/command.py

+ 1 - 1
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')
             return os.path.join(self.base_dir, 'fig.yaml')
         else:
         else:
-            os.path.join(self.base_dir, 'fig.yml')
+            return os.path.join(self.base_dir, 'fig.yml')