From 018de7b47ac1eaca9bf39e87f53836fbe4662ae3 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Sat, 11 Oct 2014 20:01:27 +0200 Subject: [PATCH] Fix "global name 'parted' is not defined" error in grml2usb Thanks to Charles Hewson for reporting the issue. Blame myself for introducing this issue after Mika got it right in the first version of his patch. --- grml2usb | 1 + 1 file changed, 1 insertion(+) diff --git a/grml2usb b/grml2usb index 9321b98..5ac0f5c 100755 --- a/grml2usb +++ b/grml2usb @@ -352,6 +352,7 @@ def check_boot_flag(device): boot_dev, x = get_device_from_partition(device) try: + import parted part = get_partition_for_path(device) if part.getFlag(parted.PARTITION_BOOT): logging.debug("bootflag is enabled on %s" % device) -- 2.1.4