From b551a09b7e1b4124084176f896e239ae2f21c11a Mon Sep 17 00:00:00 2001 From: Ed Braaten Date: Mon, 28 Apr 2025 21:19:24 -0700 Subject: [PATCH] Removed Hamshack Hotline (HH) references from report. Phonebook data is no longer available, so can't keep the data updated. Harness is still there to read the data if we find a new source in the future. --- DMR_Net_Check_In.py | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/DMR_Net_Check_In.py b/DMR_Net_Check_In.py index e5c5caa..39a3099 100644 --- a/DMR_Net_Check_In.py +++ b/DMR_Net_Check_In.py @@ -343,8 +343,8 @@ for net_day in net_day_list: outfile.write("We had a total of "+str(num_checkins)+" check-ins on "+net_day+" to the Pacific Northwest (PNW)\n") outfile.write("Digital ARES & EMCOMM Check-In Net. Below is the detailed check-in list grouped\n") outfile.write("by ARRL ARES districts. If any of the info (i.e. name or agency affiliation) below is\n") - outfile.write("incomplete or incorrect, please call me on Hamshack Hotline (HH) VOIP x11893, or\n") - outfile.write("e-mail \"ed@n7ekb.net\" with the correction(s).\n\n") + outfile.write("incomplete or incorrect, please IM me on Jabber/XMPP (ed@n7ekb.net), or\n") + outfile.write("e-mail \"ed@n7ekb.net\" with the correction(s).\n\n\n") # Check-in details for state in sorted(report_dict): @@ -362,8 +362,6 @@ for net_day in net_day_list: affil = call_data_dict[call][4] hh_num = call_data_dict[call][5] outfile.write(" "+call+", "+call_data_dict[call][0]) - if hh_num != '': - outfile.write(", HH VOIP #"+hh_num) if affil != '': outfile.write(", "+affil+"\n") else: @@ -377,8 +375,6 @@ for net_day in net_day_list: affil = call_data_dict[call][4] hh_num = call_data_dict[call][5] outfile.write(" "+call+", "+call_data_dict[call][0]) - if hh_num != '': - outfile.write(", HH VOIP #"+hh_num) if affil != '': outfile.write(", "+affil+"\n") else: @@ -396,8 +392,6 @@ for net_day in net_day_list: affil = call_data_dict[call][4] hh_num = call_data_dict[call][5] outfile.write(" "+call+", "+call_data_dict[call][0]) - if hh_num != '': - outfile.write(", HH VOIP #"+hh_num) if affil != '': outfile.write(", "+affil+"\n") else: @@ -424,6 +418,3 @@ print("All Done!") # In[ ]: - - -