mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-22 16:54:06 +01:00
Preserve order of URLs fetched from page--especially important for anthologies.
This commit is contained in:
parent
390c661a88
commit
69d1ce6c01
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ def get_urls_from_html(data,url=None,configuration=None,normalize=False,restrict
|
|||
|
||||
|
||||
def get_urls_from_text(data,configuration=None,normalize=False):
|
||||
urls = collections.OrderedDict(list)
|
||||
urls = collections.OrderedDict()
|
||||
data=unicode(data)
|
||||
|
||||
if not configuration:
|
||||
|
|
|
|||
Loading…
Reference in a new issue