summaryrefslogtreecommitdiff
path: root/scraper/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scraper/util.py')
-rw-r--r--scraper/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scraper/util.py b/scraper/util.py
index 788caa3f..2d7c2ccb 100644
--- a/scraper/util.py
+++ b/scraper/util.py
@@ -112,7 +112,7 @@ class LinkLine(object):
self.txt = txt.strip()
def __str__(self):
if self.href:
- return '<a href="{}">{}</a>'.format(self.href, self.txt)
+ return '<a href="{}" target="_blank">{}</a>'.format(self.href, self.txt)
else:
return '<span class="gray">{}</a>'.format(self.txt)