From 68c56cd3f6def1694d2fa9d90a3a0e6c231ad2d1 Mon Sep 17 00:00:00 2001 From: Stuart Axon Date: Thu, 12 Oct 2017 01:25:01 +0100 Subject: [PATCH] Update pelican_import.py Fix imports order. --- pelican/tools/pelican_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/tools/pelican_import.py b/pelican/tools/pelican_import.py index 264d7d36..8f50d004 100755 --- a/pelican/tools/pelican_import.py +++ b/pelican/tools/pelican_import.py @@ -3,6 +3,7 @@ from __future__ import print_function, unicode_literals import argparse +import collections import logging import os import re @@ -12,7 +13,6 @@ import time from codecs import open -import collections from six.moves.urllib.error import URLError from six.moves.urllib.parse import urlparse from six.moves.urllib.request import urlretrieve