mirror of https://github.com/docker/docker-py.git
Adding missing comma in spec list.
Fixing #2046, syntax error caused by missing comma on CONTAINER_SPEC_KWARGS list. Signed-off-by: Chris Mark <chrismarkou92@gmail.com>
This commit is contained in:
parent
dbe52dcb7d
commit
2d0c5dd484
|
|
@ -276,7 +276,7 @@ CONTAINER_SPEC_KWARGS = [
|
||||||
'labels',
|
'labels',
|
||||||
'mounts',
|
'mounts',
|
||||||
'open_stdin',
|
'open_stdin',
|
||||||
'privileges'
|
'privileges',
|
||||||
'read_only',
|
'read_only',
|
||||||
'secrets',
|
'secrets',
|
||||||
'stop_grace_period',
|
'stop_grace_period',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue