Skip to content

Commit

Permalink
Fix sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Preinstorfer committed Jul 23, 2018
1 parent 9a93cfe commit ea1821d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion feeds/downloadermiddlewares.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from scrapy.downloadermiddlewares.httpcache import HttpCacheMiddleware
from scrapy import signals
from scrapy.downloadermiddlewares.httpcache import HttpCacheMiddleware


class FeedsHttpCacheMiddleware(HttpCacheMiddleware):
Expand Down
4 changes: 2 additions & 2 deletions feeds/extensions.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os

import pickle

from scrapy.extensions.httpcache import FilesystemCacheStorage
from scrapy.utils.request import request_fingerprint
from scrapy.utils.python import to_bytes
from scrapy.utils.request import request_fingerprint

from feeds.cache import IGNORE_HTTP_CODES, remove_cache_entry

Expand Down
2 changes: 1 addition & 1 deletion feeds/loaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import logging
import os
import re
from textwrap import TextWrapper
from copy import deepcopy
from datetime import datetime
from textwrap import TextWrapper

import dateparser
import lxml
Expand Down

0 comments on commit ea1821d

Please sign in to comment.