diff options
| author | Matthew Poletiek <matthew.poletiek@gmail.com> | 2020-12-15 09:37:57 -0600 |
|---|---|---|
| committer | Matthew Poletiek <matthew.poletiek@gmail.com> | 2020-12-15 09:37:57 -0600 |
| commit | 352d3884279d141446016004c509d094bfb25170 (patch) | |
| tree | 37c3c26411a9897ab1f8f0f1c2f01cb60097c68c | |
| parent | 3031a55a7dc724eee0aab0c17704c38c0015bc4c (diff) | |
| download | chirp-352d3884279d141446016004c509d094bfb25170.tar.gz chirp-352d3884279d141446016004c509d094bfb25170.tar.xz | |
Fixed missing module errors
| -rw-r--r-- | chirp/drivers/baofeng_uv3r.py | 2 | ||||
| -rw-r--r-- | chirp/drivers/ft2800.py | 2 | ||||
| -rw-r--r-- | chirp/drivers/th_uv3r25.py | 2 | ||||
| -rw-r--r-- | chirp/drivers/wouxun.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/chirp/drivers/baofeng_uv3r.py b/chirp/drivers/baofeng_uv3r.py index e73bd9f..ad58a35 100644 --- a/chirp/drivers/baofeng_uv3r.py +++ b/chirp/drivers/baofeng_uv3r.py @@ -19,7 +19,7 @@ import time import os import logging -from wouxun_common import do_download, do_upload +from .wouxun_common import do_download, do_upload from chirp import util, chirp_common, bitwise, errors, directory from chirp.settings import RadioSetting, RadioSettingGroup, \ RadioSettingValueBoolean, RadioSettingValueList, \ diff --git a/chirp/drivers/ft2800.py b/chirp/drivers/ft2800.py index 860f570..b834837 100644 --- a/chirp/drivers/ft2800.py +++ b/chirp/drivers/ft2800.py @@ -18,7 +18,7 @@ import os import logging from chirp import util, memmap, chirp_common, bitwise, directory, errors -from yaesu_clone import YaesuCloneModeRadio +from .yaesu_clone import YaesuCloneModeRadio LOG = logging.getLogger(__name__) diff --git a/chirp/drivers/th_uv3r25.py b/chirp/drivers/th_uv3r25.py index ece7959..607b0c2 100644 --- a/chirp/drivers/th_uv3r25.py +++ b/chirp/drivers/th_uv3r25.py @@ -22,7 +22,7 @@ from chirp.settings import RadioSetting, RadioSettingGroup, \ RadioSettingValueInteger, RadioSettingValueList, \ RadioSettingValueBoolean, RadioSettingValueString -from th_uv3r import TYTUV3RRadio, tyt_uv3r_prep, THUV3R_CHARSET +from .th_uv3r import TYTUV3RRadio, tyt_uv3r_prep, THUV3R_CHARSET def tyt_uv3r_download(radio): diff --git a/chirp/drivers/wouxun.py b/chirp/drivers/wouxun.py index 733c801..14f7b02 100644 --- a/chirp/drivers/wouxun.py +++ b/chirp/drivers/wouxun.py @@ -23,7 +23,7 @@ from chirp.settings import RadioSetting, RadioSettingGroup, \ RadioSettingValueBoolean, RadioSettingValueList, \ RadioSettingValueInteger, RadioSettingValueString, \ RadioSettingValueFloat, RadioSettings -from wouxun_common import wipe_memory, do_download, do_upload +from .wouxun_common import wipe_memory, do_download, do_upload from textwrap import dedent LOG = logging.getLogger(__name__) |
