bugfix to properly label hashes in database

This commit is contained in:
englehardt 2015-09-15 14:06:54 -04:00
Родитель 5dce2f35d6
Коммит c39e8000b8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -94,7 +94,7 @@ def save_javascript_content(logger, browser_params, manager_params, msg):
# Hash script for deduplication on disk
script_hash = str(hash(script))
if os.path.isfile(path + script_hash + '.gz'):
return
return script_hash
if not os.path.exists(path):
os.mkdir(path)