aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/download_markit_quotes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/download_markit_quotes.py b/python/download_markit_quotes.py
index 7051d909..b6c25e0a 100644
--- a/python/download_markit_quotes.py
+++ b/python/download_markit_quotes.py
@@ -58,7 +58,7 @@ try:
link.click()
except TimeoutException:
logging.info("timeout before being able to click")
- driver.close()
+ driver.quit()
shutil.rmtree(profile.profile_dir)
sys.exit()
@@ -72,5 +72,5 @@ else:
logging.info("download worked")
insert_quotes(quote_dir="/tmp")
-driver.close()
+driver.quit()
shutil.rmtree(profile.profile_dir)