Skip to content

Commit

Permalink
@mbridak Forgot to change the base encoding of the cabrillo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Nov 3, 2024
1 parent 5651961 commit db97999
Show file tree
Hide file tree
Showing 39 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion not1mm/plugins/10_10_fall_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/10_10_spring_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/10_10_summer_phone.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/10_10_winter_phone.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_10m.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_dx_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_dx_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_field_day.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_ss_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_ss_phone.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_vhf_jan.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_vhf_jun.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/arrl_vhf_sep.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/canada_day.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_160_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_160_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_wpx_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_wpx_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_wpx_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_ww_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cq_ww_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/cwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/helvetia.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/iaru_fieldday_r1_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/iaru_fieldday_r1_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/iaru_hf.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/icwc_mst.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/jidx_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def cabrillo(self, file_encoding):
mults = show_mults(self)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 2.0", "\r\n", file_descriptor, file_encoding
)
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/jidx_ph.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def cabrillo(self, file_encoding):
mults = show_mults(self)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 2.0", "\r\n", file_descriptor, file_encoding
)
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/k1usn_sst.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/naqp_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/naqp_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/naqp_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/phone_weekly_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/ref_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/ref_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/stew_perry_topband.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/weekly_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down
2 changes: 1 addition & 1 deletion not1mm/plugins/winter_field_day.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def cabrillo(self, file_encoding):
logger.debug("%s", filename)
log = self.database.fetch_all_contacts_asc()
try:
with open(filename, "w", encoding="utf-8") as file_descriptor:
with open(filename, "w", encoding=file_encoding) as file_descriptor:
output_cabrillo_line(
"START-OF-LOG: 3.0",
"\r\n",
Expand Down

0 comments on commit db97999

Please sign in to comment.