not1mm 25.3.18__py3-none-any.whl → 25.3.19.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -272,7 +272,7 @@ def calc_score(self) -> int:
272
272
 
273
273
  def adif(self) -> None:
274
274
  """Call the generate ADIF function"""
275
- gen_adif(self, cabrillo_name)
275
+ gen_adif(self, cabrillo_name, contest_id=cabrillo_name)
276
276
 
277
277
 
278
278
  def output_cabrillo_line(line_to_output, ending, file_descriptor, file_encoding):
@@ -582,7 +582,7 @@ def populate_history_info_line(self):
582
582
  result = self.database.fetch_call_history(self.callsign.text())
583
583
  if result:
584
584
  self.history_info.setText(
585
- f"{result.get('Call', '')}, {result.get('Name', '')}, {result.get('State', '')}, {result.get('UserText','...')}"
585
+ f"{result.get('Call', '')}, {result.get('Name', '')}, {result.get('Exch1', '')}, {result.get('UserText','...')}"
586
586
  )
587
587
  else:
588
588
  self.history_info.setText("")
@@ -594,7 +594,7 @@ def check_call_history(self):
594
594
  if result:
595
595
  self.history_info.setText(f"{result.get('UserText','')}")
596
596
  if self.other_2.text() == "":
597
- self.other_2.setText(f"{result.get('State', '')}")
597
+ self.other_2.setText(f"{result.get('Exch1', '')}")
598
598
 
599
599
 
600
600
  def get_mults(self):