Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bug in get_logged_band. #65

Merged
merged 3 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ I wish to thank those who've contributed to the project.

## Recent Changes

- [24-1-21] Fixed crash in get_logged_band when out of band.
- [24-1-16.1] Fix possible crash when cabrillo generated without a station call.
- [24-1-16] Added Stew Perry Topband.
- [24-1-15] Added the Phone Weekly Test.
Expand Down
2 changes: 1 addition & 1 deletion not1mm/lib/ham_utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def get_logged_band(freq: str) -> str:
return "902"
if 1300000000 > frequency > 1240000000:
return "1296"
if 10500000000 > freq > 2300000000:
if 10500000000 > frequency > 2300000000:
return "2300+"
return "0"

Expand Down
2 changes: 1 addition & 1 deletion not1mm/lib/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""It's the version"""
__version__ = "24.1.16.1"
__version__ = "24.1.21"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "not1mm"
version = "24.1.16.1"
version = "24.1.21"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"
Expand Down