Skip to content
Snippets Groups Projects
Commit e55f4b3c authored by Nikos Skalkotos's avatar Nikos Skalkotos
Browse files

Fix a warning message in linux fix_acpid sysprep

parent 20409e9f
No related branches found
No related tags found
No related merge requests found
......@@ -108,9 +108,9 @@ class Linux(Unix):
elif event.strip() == ".*":
self.out.warn(
"Found action `.*'. Don't know how to handle this. " \
"Please edit \%s' image file manually to make the " \
"Please edit `%s' image file manually to make the " \
"system immediatelly shutdown when an power button acpi " \
"event occures" % action)
"event occures." % action.strip().split()[0])
return
@sysprep()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment