pmb.install._install: correct capitalisation in an error message (!1894)

This commit is contained in:
Antoine Fontaine 2020-03-22 11:08:48 +01:00 committed by Oliver Smith
parent 73401f8606
commit 00dc54a6c7
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -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):