1
0
Fork 0
forked from github/pelican

Merge pull request #1662 from iKevinY/unused-imports

Remove a couple of unused imports
This commit is contained in:
Justin Mayer 2015-03-14 09:19:20 -07:00
commit e0d40c17a0
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: