From 936d226a3da245d4a6961c94dbda6fadcf69ad71 Mon Sep 17 00:00:00 2001 From: cort Date: Fri, 1 Mar 2019 10:48:31 -0600 Subject: [PATCH] Fixed hardcoded alias files to use config file instead --- web_tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_tables.py b/web_tables.py index d8961a5..4338f80 100755 --- a/web_tables.py +++ b/web_tables.py @@ -609,10 +609,10 @@ if __name__ == '__main__': logger.info('\n\nCopyright (c) 2016, 2017, 2018, 2019\n\tThe Regents of the K0USY Group. All rights reserved.\n') # Download alias files - result = try_download(PATH, 'peer_ids.csv', PEER_URL, (FILE_RELOAD * 86400)) + result = try_download(PATH, PEER_FILE, PEER_URL, (FILE_RELOAD * 86400)) logging.info(result) - result = try_download(PATH, 'subscriber_ids.csv', SUBSCRIBER_URL, (FILE_RELOAD * 86400)) + result = try_download(PATH, SUBSCRIBER_FILE, SUBSCRIBER_URL, (FILE_RELOAD * 86400)) logging.info(result) # Make Alias Dictionaries