1
0
Fork 0
forked from github/pelican

Remove a couple of unused imports

As reported by Pyflakes.
This commit is contained in:
Kevin Yap 2015-03-13 23:01:31 -07:00
commit 0f7f328206
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, print_function
import six
from six.moves.urllib.parse import (unquote, urlparse, urlunparse)
from six.moves.urllib.parse import urlparse, urlunparse
import copy
import locale

View file

@ -3,7 +3,6 @@ from __future__ import with_statement, unicode_literals, print_function
import six
import os
import locale
import logging
if not six.PY3: