This commit is contained in:
Liam Young 2015-02-18 08:41:07 +00:00
parent 0d82d2e26b
commit 85aa81ebfc

View File

@ -322,7 +322,7 @@ def restart_on_change(restart_map, stopstart=False):
else:
for action in ['stop', 'start']:
for service_name in services_list:
log('CALLING %s FOR %s' + (action, service_name))
log('CALLING %s FOR %s' % (action, service_name))
service(action, service_name)
return wrapped_f
return wrap