From: Michael Prokop Date: Thu, 10 Sep 2009 15:37:57 +0000 (+0200) Subject: Further logging fixes (thanks to Thorsten Glaser) X-Git-Tag: v0.9.12~1 X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=9941e0cb9b728203a914b8a601f79cf2bdbd846c Further logging fixes (thanks to Thorsten Glaser) --- 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