From 511380ad5659c902632d5aed882f76e731c2c1e8 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Fri, 11 Dec 2020 19:05:36 -0600 Subject: fixing syntax --- chirp/drivers/__pycache__/ft70.cpython-38.pyc | Bin 37137 -> 37143 bytes chirp/drivers/__pycache__/ft90.cpython-38.pyc | Bin 16070 -> 16076 bytes chirp/drivers/ft70.py | 2 +- chirp/drivers/ft90.py | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chirp/drivers/__pycache__/ft70.cpython-38.pyc b/chirp/drivers/__pycache__/ft70.cpython-38.pyc index 72fb55a..f79c598 100644 Binary files a/chirp/drivers/__pycache__/ft70.cpython-38.pyc and b/chirp/drivers/__pycache__/ft70.cpython-38.pyc differ diff --git a/chirp/drivers/__pycache__/ft90.cpython-38.pyc b/chirp/drivers/__pycache__/ft90.cpython-38.pyc index 4090f1e..bba003d 100644 Binary files a/chirp/drivers/__pycache__/ft90.cpython-38.pyc and b/chirp/drivers/__pycache__/ft90.cpython-38.pyc differ diff --git a/chirp/drivers/ft70.py b/chirp/drivers/ft70.py index 08e4c17..2875c13 100644 --- a/chirp/drivers/ft70.py +++ b/chirp/drivers/ft70.py @@ -528,7 +528,7 @@ class FT70Radio(yaesu_clone.YaesuCloneModeRadio): _GM_RING = ("OFF", "IN RING", "AlWAYS") _GM_INTERVAL = ("LONG", "NORMAL", "OFF") - _MYCALL_CHR_SET = list(string.uppercase) + list(string.digits) + ['-','/' ] + _MYCALL_CHR_SET = list(string.ascii_uppercase) + list(string.digits) + ['-','/' ] @classmethod def get_prompts(cls): diff --git a/chirp/drivers/ft90.py b/chirp/drivers/ft90.py index 5bd413a..3163b75 100644 --- a/chirp/drivers/ft90.py +++ b/chirp/drivers/ft90.py @@ -52,7 +52,7 @@ FT90_POWER_LEVELS_UHF = [chirp_common.PowerLevel("Hi", watts=35), chirp_common.PowerLevel("Low", watts=5)] FT90_DUPLEX = ["", "-", "+", "split"] -FT90_CWID_CHARS = list(string.digits) + list(string.uppercase) + list(" ") +FT90_CWID_CHARS = list(string.digits) + list(string.ascii_uppercase) + list(" ") FT90_DTMF_CHARS = list("0123456789ABCD*#") FT90_SPECIAL = ["vfo_vhf", "home_vhf", "vfo_uhf", "home_uhf", "pms_1L", "pms_1U", "pms_2L", "pms_2U"] -- cgit v1.2.3