Skip to content
Snippets Groups Projects
Commit 5a9e49d1 authored by David Hoese's avatar David Hoese
Browse files

Fix bug in tile indexer saying that all times were new

parent 6fc9dc88
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ def index(input_files, output_shapefile):
shutil.rmtree(tmp_dir, ignore_errors=True)
times_removed = current_times - new_times
times_added = new_times = current_times
times_added = new_times - current_times
return sorted(times_removed), sorted(times_added)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment