From 0a7ff8db093f81100798ed502c43e43fc9979a67 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 15 Oct 2014 21:06:52 +0200 Subject: [PATCH] importer: Use with-block to open file. --- scripts/importer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/importer.py b/scripts/importer.py index 403e9a52b..67ae83885 100755 --- a/scripts/importer.py +++ b/scripts/importer.py @@ -50,8 +50,8 @@ def get_args(): def import_chromium(bookmarks_file): """Import bookmarks from a HTML file generated by Chromium.""" import bs4 - - soup = bs4.BeautifulSoup(open(bookmarks_file, encoding='utf-8')) + with open(bookmarks_file, encoding='utf-8') as f: + soup = bs4.BeautifulSoup(f) html_tags = soup.findAll('a')