Skip to content

Commit b1d0244

Browse files
committed
@mbridak Fix: f-string quote mismatch in ratewindow.py
1 parent cfdb5eb commit b1d0244

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog
22

3+
- [25-1-24] Fix mismatched quotes causing crash.
34
- [25-1-23] Added a basic rate window. Changed DB to WAL mode.
45
- [25-1-15] Fix bug in ADIF output where mode showed as CW-R and not CW.
56
- [25-1-6] Altered RTTY RU UDP ADIF parse.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
204204

205205
## Recent Changes (Polishing the Turd)
206206

207+
- [25-1-24] Fix mismatched quotes causing crash.
207208
- [25-1-23] Added a basic rate window. Changed DB to WAL mode.
208209
- [25-1-15] Fix bug in ADIF output where mode showed as CW-R and not CW.
209210
- [25-1-6] Altered RTTY RU UDP ADIF parse.

not1mm/lib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""It's the version"""
22

3-
__version__ = "25.1.23.1"
3+
__version__ = "25.1.24"

not1mm/ratewindow.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ def get_run_and_total_qs(self):
217217
result = self.database.exec_sql(query)
218218
try:
219219
sandp = result.get("totalqs", 0) - result.get("runs", 0)
220-
self.run_qso.setText(f"{result.get("runs", 0)}")
220+
self.run_qso.setText(f"{result.get('runs', 0)}")
221221
self.sandp_qso.setText(f"{sandp}")
222-
self.qso_counts.setText(f"{result.get("totalqs", 0)} pts")
222+
self.qso_counts.setText(f"{result.get('totalqs', 0)} pts")
223223
except TypeError:
224224
...
225225

@@ -228,7 +228,7 @@ def get_run_and_total_qs(self):
228228
result = self.database.exec_sql(query)
229229
try:
230230
sandp = result.get("totalqs", 0) - result.get("runs", 0)
231-
self.hour_run_qso.setText(f"{result.get("runs", 0)}")
231+
self.hour_run_qso.setText(f"{result.get('runs', 0)}")
232232
self.hour_sandp_qso.setText(f"{sandp}")
233233
except TypeError:
234234
...

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "not1mm"
7-
version = "25.1.23.1"
7+
version = "25.1.24"
88
description = "NOT1MM Logger"
99
readme = "README.md"
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)