From 018ecfebc7c5420ca82195dae91564a54d38def1 Mon Sep 17 00:00:00 2001 From: M0NWI Date: Tue, 13 Jun 2017 13:46:17 +0100 Subject: [PATCH] Add files via upload Fixed issue where ACL list and action were both being imported as ACTION. --- bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge.py b/bridge.py index 1806715..d99f436 100755 --- a/bridge.py +++ b/bridge.py @@ -132,7 +132,7 @@ def build_acl(_sub_acl): acl_file.ACL[i] = hex_str_3(acl_file.ACL[i]) logger.info('ACL file found and ACL entries imported') ACL_ACTION = acl_file.ACL_ACTION - ACL = acl_file.ACL_ACTION + ACL = acl_file.ACL except ImportError: logger.info('ACL file not found or invalid - all subscriber IDs are valid') ACL_ACTION = 'NONE'