From 9ac48cac3f2d22a47e1c33374b741fbd1c5a9267 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 30 Jun 2015 20:54:15 -0500 Subject: [PATCH] formatting update --- pickle_stat_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pickle_stat_reader.py b/pickle_stat_reader.py index 13e7046..dc75360 100644 --- a/pickle_stat_reader.py +++ b/pickle_stat_reader.py @@ -41,7 +41,7 @@ def print_stats(): for peer in NETWORK[ipsc]['PEERS']: stat = NETWORK[ipsc]['PEERS'][peer]['STATUS'] if peer == NETWORK[ipsc]['LOCAL']['RADIO_ID']: - print(' RADIO ID: {} Is this instance'.format(str(int_id(peer)).rjust(8,'0'))) + print(' RADIO ID: {} Is this DMRLink IPSC instance'.format(str(int_id(peer)).rjust(8,'0'))) else: print(' RADIO ID: {} CONNECTED: {}, KEEP ALIVES: SENT {} RECEIVED {} MISSED {}'.format(str(int_id(peer)).rjust(8,'0'),stat['CONNECTED'],stat['KEEP_ALIVES_SENT'],stat['KEEP_ALIVES_RECEIVED'],stat['KEEP_ALIVES_MISSED'])) print()