X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=01ee07401cae56e3010632fac0c55f096e130f2e;hp=86f05678b12586026caf0ec8bd5488154ff8e733;hb=9941e0cb9b728203a914b8a601f79cf2bdbd846c;hpb=fc906afbdc63fe9f11cf64186a61aac0c547edc5 diff --git a/grml2usb b/grml2usb index 86f0567..01ee074 100755 --- a/grml2usb +++ b/grml2usb @@ -1162,8 +1162,8 @@ def copy_bootloader_files(iso_mount, target): execute(mkdir, grub_target) if not os.path.isfile(GRML2USB_BASE + "/grub/splash.xpm.gz"): - logging.critical("Error: %s/grub/splash.xpm.gz can not be read.", (GRML2USB_BASE, )) - logging.critical("Please make sure you've the grml2usb Debian package installed!") + logging.critical("Error: %s/grub/splash.xpm.gz can not be read.", GRML2USB_BASE) + logging.critical("Please make sure you've installed the grml2usb (Debian) package!") raise else: exec_rsync(GRML2USB_BASE + '/grub/splash.xpm.gz', grub_target + 'splash.xpm.gz') @@ -1244,8 +1244,8 @@ def identify_grml_flavour(mountpath): grml_flavour = re.match(r'[\w-]*', grml_info).group() except TypeError: raise - except: - logging.critical("Unexpected error:", sys.exc_info()[0]) + except Exception, e: + logging.critical("Unexpected error: %s", e) raise return grml_flavour