aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-06-09 15:19:56 +0200
committerlaforge <laforge@osmocom.org>2023-06-11 19:11:37 +0000
commite345e1126d9cdd248592ac0d9e4ed83500b3ca01 (patch)
tree4e930f20c7df2572b0bbc00986cfcca00c70d27b
parentf422eb18861906fbc544371496d38b4c95dde09f (diff)
pySim-shell: fix reset command
The API of the lchan object has changed. It no longer features the reset method used by the pySim-shell reset command. Let's fix this by using the reset method of the card object. Change-Id: I55511d1edb97e8fa014724598ec173dd47fe25c1
-rwxr-xr-xpySim-shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pySim-shell.py b/pySim-shell.py
index c6782d4..f6cd75d 100755
--- a/pySim-shell.py
+++ b/pySim-shell.py
@@ -50,7 +50,7 @@ from pySim.exceptions import *
from pySim.commands import SimCardCommands
from pySim.transport import init_reader, ApduTracer, argparse_add_reader_args, ProactiveHandler
from pySim.cards import card_detect, SimCard
-from pySim.utils import h2b, swap_nibbles, rpad, b2h, JsonEncoder, bertlv_parse_one, sw_match
+from pySim.utils import h2b, b2h, i2h, swap_nibbles, rpad, JsonEncoder, bertlv_parse_one, sw_match
from pySim.utils import sanitize_pin_adm, tabulate_str_list, boxed_heading_str, Hexstr
from pySim.card_handler import CardHandler, CardHandlerAuto
@@ -736,8 +736,8 @@ class PySimCommands(CommandSet):
def do_reset(self, opts):
"""Reset the Card."""
- atr = self._cmd.lchan.reset(self._cmd)
- self._cmd.poutput('Card ATR: %s' % atr)
+ atr = self._cmd.card.reset()
+ self._cmd.poutput('Card ATR: %s' % i2h(atr))
self._cmd.update_prompt()
def do_desc(self, opts):