diff --git a/image_creator/os_type/linux.py b/image_creator/os_type/linux.py
index 89d5e32db9d51919ee6e5229c8e35c2bd07e215e..75977031181dae8fc4a812263322706efd52d72d 100644
--- a/image_creator/os_type/linux.py
+++ b/image_creator/os_type/linux.py
@@ -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()