X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=80cf86317ce19abc7b7631b9050d80273fe64da3;hp=a13e6eac9c18f9f523830b5cb8f7910e97aab7eb;hb=ea806f370df71c219d9e32e6d6c0a930cc24c8f2;hpb=17edf962140d07b067ee65750333d4d3c8553d06 diff --git a/grml2usb b/grml2usb index a13e6ea..80cf863 100755 --- a/grml2usb +++ b/grml2usb @@ -22,7 +22,7 @@ import uuid import struct # global variables -PROG_VERSION = "0.9.25" +PROG_VERSION = "0.9.26~git" MOUNTED = set() # register mountpoints TMPFILES = set() # register tmpfiles DATESTAMP = time.mktime(datetime.datetime.now().timetuple()) # unique identifier for syslinux.cfg @@ -990,8 +990,9 @@ def check_for_fat(partition): " (wrong UID/permissions or device/directory not present?)" % partition) if filesystem != "vfat": - raise CriticalException("Partition %s does not contain a FAT16 filesystem. " - + "(Use --fat16 or run mkfs.vfat %s)" % (partition, partition)) + raise CriticalException( + "Partition %s does not contain a FAT16 filesystem." % (partition) \ + + "(Use --fat16 or run mkfs.vfat %s)" % (partition)) except OSError: raise CriticalException("Sorry, /sbin/blkid not available (install e2fsprogs?)")