From 00dc54a6c76cf5fa22e1a26d2a117758353ae6f5 Mon Sep 17 00:00:00 2001 From: Antoine Fontaine Date: Sun, 22 Mar 2020 11:08:48 +0100 Subject: [PATCH] pmb.install._install: correct capitalisation in an error message (!1894) --- pmb/install/_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index 3f1e270a..fccb37e9 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -366,7 +366,7 @@ def sanity_check_sdcard(device): with open('/sys/class/block/{}/ro'.format(device_name), 'r') as handle: ro = handle.read() if ro == '1\n': - raise RuntimeError("{} is read-only, Is the sdcard locked?".format(device)) + raise RuntimeError("{} is read-only, is the sdcard locked?".format(device)) def install_system_image(args):