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.
This commit is contained in:
Ed Braaten 2025-04-28 21:19:24 -07:00
parent dbf46403ab
commit b551a09b7e
No known key found for this signature in database
GPG key ID: 11743CE9834B8FA6

View file

@ -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("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("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("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("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") outfile.write("e-mail \"ed@n7ekb.net\" with the correction(s).\n\n\n")
# Check-in details # Check-in details
for state in sorted(report_dict): for state in sorted(report_dict):
@ -362,8 +362,6 @@ for net_day in net_day_list:
affil = call_data_dict[call][4] affil = call_data_dict[call][4]
hh_num = call_data_dict[call][5] hh_num = call_data_dict[call][5]
outfile.write(" "+call+", "+call_data_dict[call][0]) outfile.write(" "+call+", "+call_data_dict[call][0])
if hh_num != '':
outfile.write(", HH VOIP #"+hh_num)
if affil != '': if affil != '':
outfile.write(", "+affil+"\n") outfile.write(", "+affil+"\n")
else: else:
@ -377,8 +375,6 @@ for net_day in net_day_list:
affil = call_data_dict[call][4] affil = call_data_dict[call][4]
hh_num = call_data_dict[call][5] hh_num = call_data_dict[call][5]
outfile.write(" "+call+", "+call_data_dict[call][0]) outfile.write(" "+call+", "+call_data_dict[call][0])
if hh_num != '':
outfile.write(", HH VOIP #"+hh_num)
if affil != '': if affil != '':
outfile.write(", "+affil+"\n") outfile.write(", "+affil+"\n")
else: else:
@ -396,8 +392,6 @@ for net_day in net_day_list:
affil = call_data_dict[call][4] affil = call_data_dict[call][4]
hh_num = call_data_dict[call][5] hh_num = call_data_dict[call][5]
outfile.write(" "+call+", "+call_data_dict[call][0]) outfile.write(" "+call+", "+call_data_dict[call][0])
if hh_num != '':
outfile.write(", HH VOIP #"+hh_num)
if affil != '': if affil != '':
outfile.write(", "+affil+"\n") outfile.write(", "+affil+"\n")
else: else:
@ -424,6 +418,3 @@ print("All Done!")
# In[ ]: # In[ ]: