mirror of https://github.com/docker/docker-py.git
Merge pull request #598 from HackToday/fixparameter
Fix the parameter mismatch
This commit is contained in:
commit
6dd3217c3a
|
|
@ -526,7 +526,7 @@ class Client(requests.Session):
|
||||||
'exec_start instead', DeprecationWarning
|
'exec_start instead', DeprecationWarning
|
||||||
)
|
)
|
||||||
create_res = self.exec_create(
|
create_res = self.exec_create(
|
||||||
container, cmd, detach, stdout, stderr, tty
|
container, cmd, stdout, stderr, tty
|
||||||
)
|
)
|
||||||
|
|
||||||
return self.exec_start(create_res, detach, tty, stream)
|
return self.exec_start(create_res, detach, tty, stream)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue