From 7f02d65dd91ecba195ad55d03b32089e81d3342a Mon Sep 17 00:00:00 2001 From: Aron Griffis Date: Sun, 23 Aug 2015 10:29:02 -0400 Subject: [PATCH] Make hosts_to_ignore a set() earlier for clarity. --- vcr/config.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vcr/config.py b/vcr/config.py index 030462a..a94520f 100644 --- a/vcr/config.py +++ b/vcr/config.py @@ -211,12 +211,10 @@ class VCR(object): ) ) - hosts_to_ignore = list(ignore_hosts) + hosts_to_ignore = set(ignore_hosts) if ignore_localhost: - hosts_to_ignore.extend(('localhost', '0.0.0.0', '127.0.0.1')) - + hosts_to_ignore.update(('localhost', '0.0.0.0', '127.0.0.1')) if hosts_to_ignore: - hosts_to_ignore = set(hosts_to_ignore) filter_functions.append(self._build_ignore_hosts(hosts_to_ignore)) if before_record_request: