Skip to content

Commit 6dd3217

Browse files
committed
Merge pull request #598 from HackToday/fixparameter
Fix the parameter mismatch
2 parents fc17476 + bf00acf commit 6dd3217

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)