Ignore non-plum containers

This commit is contained in:
Ben Firshman 2013-12-18 12:01:54 +00:00
parent 24a98b0552
commit 90130eec65
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ def parse_name(name):
match = re.match('^(.+)_(\d+)$', name) match = re.match('^(.+)_(\d+)$', name)
if match is None: if match is None:
raise ValueError("Invalid name: %s" % name) return (None, None)
(service_name, suffix) = match.groups() (service_name, suffix) = match.groups()