From 80e1a9196da6b9129db88e027906274e3a88f5cc Mon Sep 17 00:00:00 2001 From: Mark Jessop Date: Thu, 16 May 2019 21:36:39 +0930 Subject: [PATCH] Fix bug with RS41-SGM handling. --- auto_rx/auto_rx.py | 2 +- auto_rx/autorx/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_rx/auto_rx.py b/auto_rx/auto_rx.py index d455ae9..2c0a9ee 100644 --- a/auto_rx/auto_rx.py +++ b/auto_rx/auto_rx.py @@ -336,7 +336,7 @@ def clean_task_list(): temporary_block_list[_key] = time.time() # If there is a scanner currently running, add it to the scanners internal block list. if 'SCAN' in autorx.task_list: - auto_rx.task_list['SCAN']['task'].add_temporary_block(_key) + autorx.task_list['SCAN']['task'].add_temporary_block(_key) # Release its associated SDR. diff --git a/auto_rx/autorx/__init__.py b/auto_rx/autorx/__init__.py index 754abab..5a5c5a3 100644 --- a/auto_rx/autorx/__init__.py +++ b/auto_rx/autorx/__init__.py @@ -17,7 +17,7 @@ except ImportError: # MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus. # PATCH - Small changes, or minor feature additions. -__version__ = "1.1.2-beta" +__version__ = "1.1.3-beta" # Global Variables