Browse Source

Fixes --exit-code-from

 - tried to find the length and array index of a filter object

Signed-off-by: Duncan Paterson <[email protected]>
Duncan Paterson 8 năm trước cách đây
mục cha
commit
da78c2c1db
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      compose/cli/main.py

+ 2 - 2
compose/cli/main.py

@@ -944,9 +944,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}" '