Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unused _
  • Loading branch information
da2x committed Sep 2, 2015
1 parent 4c09972 commit c38375a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/check.py
Expand Up @@ -234,7 +234,7 @@ def analyze(self, fname, find_sources=False, check_remote=False):
target = l[2]
if target == "#":
continue
target, _ = urldefrag(target)
target = urldefrag(target)[0]

if any([urlparse(target).netloc.endswith(_) for _ in ['example.com', 'example.net', 'example.org']]):
self.logger.info("Not testing example address \"{0}\".".format(target))
Expand Down

0 comments on commit c38375a

Please sign in to comment.