Skip to content

Commit bf00acf

Browse files
committed
Fix the parameter mismatch
Closes-Issue: #597
1 parent fc17476 commit bf00acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def execute(self, container, cmd, detach=False, stdout=True, stderr=True,
526526
'exec_start instead', DeprecationWarning
527527
)
528528
create_res = self.exec_create(
529-
container, cmd, detach, stdout, stderr, tty
529+
container, cmd, stdout, stderr, tty
530530
)
531531

532532
return self.exec_start(create_res, detach, tty, stream)

0 commit comments

Comments
 (0)