Kaynağa Gözat

Merge pull request #4759 from brainnwaveDuncan/master

Fixes --exit-code-from
Joffrey F 8 yıl önce
ebeveyn
işleme
01776651e8
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      compose/cli/main.py

+ 2 - 2
compose/cli/main.py

@@ -941,9 +941,9 @@ class TopLevelCommand(object):
 
                 exit_code = 0
                 if exit_value_from:
-                    candidates = filter(
+                    candidates = list(filter(
                         lambda c: c.service == exit_value_from,
-                        attached_containers)
+                        attached_containers))
                     if not candidates:
                         log.error(
                             'No containers matching the spec "{0}" '