aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Poletiek <matthew.poletiek@gmail.com>2020-12-11 19:05:36 -0600
committerMatthew Poletiek <matthew.poletiek@gmail.com>2020-12-11 19:05:36 -0600
commit511380ad5659c902632d5aed882f76e731c2c1e8 (patch)
treee8b4130894864a9b6e5e4dfe8e2867f832985595
parentc0603ec28f5b64cd03e4b01c51dfcbe4aee7e903 (diff)
downloadchirp-511380ad5659c902632d5aed882f76e731c2c1e8.tar.gz
chirp-511380ad5659c902632d5aed882f76e731c2c1e8.tar.xz
fixing syntax
-rw-r--r--chirp/drivers/__pycache__/ft70.cpython-38.pycbin37137 -> 37143 bytes
-rw-r--r--chirp/drivers/__pycache__/ft90.cpython-38.pycbin16070 -> 16076 bytes
-rw-r--r--chirp/drivers/ft70.py2
-rw-r--r--chirp/drivers/ft90.py2
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
--- a/chirp/drivers/__pycache__/ft70.cpython-38.pyc
+++ b/chirp/drivers/__pycache__/ft70.cpython-38.pyc
Binary files differ
diff --git a/chirp/drivers/__pycache__/ft90.cpython-38.pyc b/chirp/drivers/__pycache__/ft90.cpython-38.pyc
index 4090f1e..bba003d 100644
--- a/chirp/drivers/__pycache__/ft90.cpython-38.pyc
+++ b/chirp/drivers/__pycache__/ft90.cpython-38.pyc
Binary files 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"]