diff --git a/src/scat/parsers/qualcomm/diaggsmlogparser.py b/src/scat/parsers/qualcomm/diaggsmlogparser.py index 19a0e7e..3400a80 100644 --- a/src/scat/parsers/qualcomm/diaggsmlogparser.py +++ b/src/scat/parsers/qualcomm/diaggsmlogparser.py @@ -180,7 +180,7 @@ def parse_gsm_l1_surround_cell_ba(self, pkt_header, pkt_body: bytes, args: dict) if item.bsic_valid == 1: stdout += 'GSM Surround Cell BA: Cell {}: ARFCN: {}/BC: {}/BSIC: {}, RxPwr: {:.2f}\n'.format(i, s_arfcn, s_band, item.bsic, s_rxpwr_real) else: - stdout += 'GSM Surround Cell BA: Cell {}: ARFCN: {}/BC: {}/BSIC: N/A, RxPwr: {:.2f}\n'.format(i, s_arfcn, s_band, item.bsic, s_rxpwr_real) + stdout += 'GSM Surround Cell BA: Cell {}: ARFCN: {}/BC: {}/BSIC: N/A, RxPwr: {:.2f}\n'.format(i, s_arfcn, s_band, s_rxpwr_real) return {'stdout': stdout.rstrip(), 'ts': pkt_ts}