From d92f2f58e92eada506e2508466d12789ceef5497 Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 22 Nov 2018 11:31:37 +0100 Subject: [PATCH] Fix typo log used 'a' in both MBR and GPT, but it should be 'an MBR' --- scripts/usb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/usb.py b/scripts/usb.py index 6121f0e..4469dd9 100644 --- a/scripts/usb.py +++ b/scripts/usb.py @@ -386,7 +386,7 @@ def gpt_device(dev_name): """ is_gpt = osdriver.gpt_device(dev_name) config.usb_gpt = is_gpt - gen.log('Device %s is a %s disk.' % (dev_name, is_gpt and 'GPT' or 'MBR')) + gen.log('Device %s is %s disk.' % (dev_name, is_gpt and 'a GPT' or 'an MBR')) def unmount(usb_disk):