Merge pull request #1538 from thieman/tnt-serivce-misspelled

Correct misspelling of "Service" in an error message
(cherry picked from commit bd246fb011aa6805d57eb31d641e3c072c072d63)

Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
Ben Firshman 2015-06-11 21:54:53 +01:00 committed by Aanand Prasad
parent ad4cc5d6df
commit b7e8770c4f

View File

@ -171,7 +171,7 @@ class Project(object):
try:
net = Container.from_id(self.client, net_name)
except APIError:
raise ConfigurationError('Serivce "%s" is trying to use the network of "%s", which is not the name of a service or container.' % (service_dict['name'], net_name))
raise ConfigurationError('Service "%s" is trying to use the network of "%s", which is not the name of a service or container.' % (service_dict['name'], net_name))
else:
net = service_dict['net']