From: Evgeni Golov Date: Sun, 12 May 2013 12:19:57 +0000 (+0200) Subject: ups, log.info() does not need a tuple X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=refs%2Fheads%2Fevgeni%2Fgrub2-install ups, log.info() does not need a tuple --- diff --git a/grml2usb b/grml2usb index c0d7783..7f1f21d 100755 --- a/grml2usb +++ b/grml2usb @@ -427,7 +427,7 @@ def install_grub(device): @device: partition where grub should be installed to""" if options.dryrun: - logging.info("Would execute %s [--root-directory=mount_point] %s now.", (GRUB_INSTALL, device)) + logging.info("Would execute %s [--root-directory=mount_point] %s now.", GRUB_INSTALL, device) else: device_mountpoint = tempfile.mkdtemp(prefix="grml2usb") register_tmpfile(device_mountpoint)