Skip to content

Commit 405d485

Browse files
committedMay 14, 2016
lint
1 parent f688038 commit 405d485

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed
 

‎nikola/plugins/task/galleries.py

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import json
3434
import mimetypes
3535
import os
36-
import sys
3736
try:
3837
from urlparse import urljoin
3938
except ImportError:

‎nikola/plugins/task/listings.py

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
from __future__ import unicode_literals, print_function
3030

3131
from collections import defaultdict
32-
import sys
3332
import os
3433
import lxml.html
3534

‎nikola/plugins/task/tags.py

-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
from __future__ import unicode_literals
3030
import json
3131
import os
32-
import sys
3332
import natsort
3433
try:
3534
from urlparse import urljoin
@@ -107,7 +106,6 @@ def gen_tasks(self):
107106
if len(intersect) > 0:
108107
for slug in intersect:
109108
utils.LOGGER.error("Category '{0}' and tag '{1}' both have the same slug '{2}' for language {3}!".format('/'.join(categories[slug]), tags[slug], slug, lang))
110-
utils.LOGGER.error("Category '{0}' and tag '{1}' both have the same slug '{2}'!".format(categories[slug], tags[slug], slug))
111109

112110
# Test for category slug clashes
113111
categories = {}

0 commit comments

Comments
 (0)
Please sign in to comment.