Skip to content

Commit

Permalink
Ignore records where the email cannot be found
Browse files Browse the repository at this point in the history
  • Loading branch information
0x9900 committed Feb 25, 2024
1 parent 7be90b1 commit 518655d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions eqsl/_eqsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,10 @@ def main():
logging.warning('QSL already sent to %s', qso.call)
continue

if not qso.email:
logging.warning('No email found for %s', qso.call)
continue

if not opts.no_email:
image_name = card(qso, config.signature)
try:
Expand Down

0 comments on commit 518655d

Please sign in to comment.