From 0ff748e2e6d0514e1b1be912135efd96bcccf4d6 Mon Sep 17 00:00:00 2001 From: rsteube Date: Tue, 20 Sep 2016 21:08:48 +0200 Subject: [PATCH] fixed indentation --- src/readability | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/readability b/src/readability index 9d29016..4333921 100644 --- a/src/readability +++ b/src/readability @@ -5,7 +5,7 @@ from readability.readability import Document tmpfile=os.path.expanduser('~/.local/share/qutebrowser/userscripts/readability.html') if not os.path.exists(os.path.dirname(tmpfile)): - os.makedirs(os.path.dirname(tmpfile)) + os.makedirs(os.path.dirname(tmpfile)) with codecs.open(os.environ['QUTE_HTML'], 'r', 'utf-8') as source: doc = Document(source.read())