From 5a8763154ed19ef9e32d26085f8fe707ff42e4ef Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Mon, 11 Nov 2019 11:01:46 +0100 Subject: [PATCH] cards.py: do not use spaces in card names pySim-prog.py features a way to detect which card type is in the reader. The returned value is often used as filename for testfiles and other automated operations. Therefore lets not have spaces in simcard names Change-Id: Ib7428fab767874dd53478d7c64601ff8938e05aa --- pySim/cards.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pySim/cards.py b/pySim/cards.py index 41723c4d..758ec0e9 100644 --- a/pySim/cards.py +++ b/pySim/cards.py @@ -636,7 +636,7 @@ class FairwavesSIM(Card): 3F00/7F20/FF02: Ki """ - name = 'Fairwaves SIM' + name = 'Fairwaves-SIM' # Propriatary files _EF_num = { 'Ki': 'FF02', @@ -774,7 +774,7 @@ class OpenCellsSim(Card): """ - name = 'OpenCells SIM' + name = 'OpenCells-SIM' def __init__(self, ssc): super(OpenCellsSim, self).__init__(ssc)