Skip to content

Commit

Permalink
Merge pull request #940 from argilo/fix-powers-parsing
Browse files Browse the repository at this point in the history
Remove trailing newline to ensure correct parsing
  • Loading branch information
darksidelemm authored Nov 15, 2024
2 parents 3ec9911 + 11d5e9f commit 5d7c3b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto_rx/autorx/sdr_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def read_ka9q_power_log(log_filename, sdr_name):
continue

# Split line into fields.
fields = line.split(",", 5)
fields = line.rstrip().split(",", 5)

if len(fields) < 5:
logging.error(
Expand Down

0 comments on commit 5d7c3b1

Please sign in to comment.