Fix variable naming in service collection

This commit is contained in:
Ben Firshman 2013-12-17 11:44:36 +00:00
parent 6a2d528d2e
commit 6abec85703
1 changed files with 4 additions and 4 deletions

View File

@ -43,12 +43,12 @@ class ServiceCollection(list):
return service
def start(self):
for container in self:
container.start()
for service in self:
service.start()
def stop(self):
for container in self:
container.stop()
for service in self:
service.stop()