Replace UTF-8 probematic blank space with another text editor

This commit is contained in:
hartator 2016-09-16 12:04:47 -05:00
parent 504e8f679c
commit cfa236a4d1

View File

@ -78,7 +78,7 @@ class WaybackMachineDownloader
file_list_curated = Hash.new
[index_file_list_raw, all_file_list_raw].each do |file|
file.each_line do |line|
line = line.split(" ")
line = line.split(' ')
file_timestamp = line[0].to_i
file_url = line[1]
file_id = file_url.split('/')[3..-1].join('/')