From 835011d1a8414db47dbdbd6a78e9dc6bbb36bf38 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 31 Jul 2013 13:58:53 -0500 Subject: [PATCH] Fixed formatting error in peer list --- ipsc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipsc.py b/ipsc.py index 193dc7a..d731bcc 100644 --- a/ipsc.py +++ b/ipsc.py @@ -179,7 +179,7 @@ def print_peer_list(_network): print('\tRADIO ID: {}' .format(int(binascii.b2a_hex(dictionary['RADIO_ID']), 16))) print('\t\tIP Address: {}:{}' .format(dictionary['IP'], dictionary['PORT'])) print('\t\tOperational: {}, Mode: {}, TS1 Link: {}, TS2 Link: {}' .format(dictionary['PEER_OPER'], dictionary['PEER_MODE'], dictionary['TS1_LINK'], dictionary['TS2_LINK'])) - print('\t\tStatus: {}, KeepAlives Sent: {}, KeepAlives Outstanding: {}, KeepAlives Missed: {}' .format(dictionary['STATUS']['CONNECTED'], dictionary['STATUS']['KEEP_ALIVES_OUTSTANDING'], dictionary['STATUS']['KEEP_ALIVES_SENT'], dictionary['STATUS']['KEEP_ALIVES_MISSED'])) + print('\t\tStatus: {}, KeepAlives Sent: {}, KeepAlives Outstanding: {}, KeepAlives Missed: {}' .format(dictionary['STATUS']['CONNECTED'], dictionary['STATUS']['KEEP_ALIVES_SENT'], dictionary['STATUS']['KEEP_ALIVES_OUTSTANDING'], dictionary['STATUS']['KEEP_ALIVES_MISSED'])) print('')