mirror of https://github.com/docker/compose.git
Remove empty lists from default Service args
This will cause terrifying bugs. Signed-off-by: Ben Firshman <ben@firshman.co.uk>
This commit is contained in:
parent
9fd296f416
commit
f983110492
|
@ -40,7 +40,7 @@ class ConfigError(ValueError):
|
|||
|
||||
|
||||
class Service(object):
|
||||
def __init__(self, name, client=None, project='default', links=[], volumes_from=[], **options):
|
||||
def __init__(self, name, client=None, project='default', links=None, volumes_from=None, **options):
|
||||
if not re.match('^%s+$' % VALID_NAME_CHARS, name):
|
||||
raise ConfigError('Invalid service name "%s" - only %s are allowed' % (name, VALID_NAME_CHARS))
|
||||
if not re.match('^%s+$' % VALID_NAME_CHARS, project):
|
||||
|
|
Loading…
Reference in New Issue