ublox-gsm-config: Write SIM with capital letters

BugzID: 57325
This commit is contained in:
Alexandre Bard 2019-06-13 13:59:19 +02:00
parent 793a0e0336
commit 769add9c88
1 changed files with 2 additions and 2 deletions

View File

@ -56,10 +56,10 @@ def sim_present(ser):
def check_sim_presence(ser):
if sim_present(ser):
print("sim present")
print("SIM present")
return False
else:
print("no sim, switching to esim")
print("no SIM card, switching to eSIM")
switch_sim()
return True