From 26a4c7fd2c2bd438c1a605730cca7431f58608b7 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Wed, 10 Jul 2019 09:42:20 +0200 Subject: [PATCH] fix: [Crawler] incorrect config --- bin/Crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Crawler.py b/bin/Crawler.py index e5864059..fa0a796d 100755 --- a/bin/Crawler.py +++ b/bin/Crawler.py @@ -316,7 +316,7 @@ if __name__ == '__main__': # Setup the I/O queues p = Process(config_section) - splash_url = '{}:{}'.format( p.config.get("Crawler", "splash_url_onion"), splash_port) + splash_url = '{}:{}'.format( p.config.get("Crawler", "splash_url"), splash_port) print('splash url: {}'.format(splash_url)) PASTES_FOLDER = os.path.join(os.environ['AIL_HOME'], p.config.get("Directories", "pastes"))