From: Nikos Skalkotos Date: Mon, 25 Jun 2012 13:04:07 +0000 (+0300) Subject: Fix a warning message in linux fix_acpid sysprep X-Git-Tag: v0.1~57 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/e55f4b3c03b9b6ec514cb0b008ffbf6bac771d28 Fix a warning message in linux fix_acpid sysprep --- diff --git a/image_creator/os_type/linux.py b/image_creator/os_type/linux.py index 89d5e32..7597703 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()