From f431189a9ef87b85e65f3663529861715752bb57 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 6 Apr 2021 21:19:14 +0200 Subject: [PATCH] pySim/filesystem: Remove left-over debug print statements the print statements in read_binary_decoded and update_binary_decoded should have been removed a long time ago. Change-Id: I9ccc61c426a755fae9008d0717d579fa2da0ef7c --- pySim/filesystem.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pySim/filesystem.py b/pySim/filesystem.py index ab9b2f3b..a65a7643 100644 --- a/pySim/filesystem.py +++ b/pySim/filesystem.py @@ -983,7 +983,6 @@ class RuntimeState(object): """ (data, sw) = self.read_binary() dec_data = self.selected_file.decode_hex(data) - print("%s: %s -> %s" % (sw, data, dec_data)) return (dec_data, sw) def update_binary(self, data_hex:str, offset:int=0): @@ -1005,7 +1004,6 @@ class RuntimeState(object): data : abstract data which is to be encoded and written """ data_hex = self.selected_file.encode_hex(data) - print("%s -> %s" % (data, data_hex)) return self.update_binary(data_hex) def read_record(self, rec_nr:int=0):