From 74ff401e1d5cd6ccf6304111f53ab82320b863a3 Mon Sep 17 00:00:00 2001 From: = Date: Thu, 24 Aug 2017 16:41:30 +0200 Subject: [PATCH 1/3] Fixed bug: No CR between indexes in all_index.txt file --- bin/Indexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Indexer.py b/bin/Indexer.py index 29990bfd..96c071f5 100755 --- a/bin/Indexer.py +++ b/bin/Indexer.py @@ -119,7 +119,7 @@ if __name__ == "__main__": indexname = str(timestamp) #update all_index with open(indexRegister_path, "a") as f: - f.write(str(timestamp)) + f.write('/n'+str(timestamp)+) #create new dir os.mkdir(indexpath) ix = create_in(indexpath, schema) From b2d4dd4a1f573e64041e471e88485cfbaee6257e Mon Sep 17 00:00:00 2001 From: = Date: Thu, 24 Aug 2017 16:43:05 +0200 Subject: [PATCH 2/3] Typo --- bin/Indexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Indexer.py b/bin/Indexer.py index 96c071f5..cb0a6b9d 100755 --- a/bin/Indexer.py +++ b/bin/Indexer.py @@ -119,7 +119,7 @@ if __name__ == "__main__": indexname = str(timestamp) #update all_index with open(indexRegister_path, "a") as f: - f.write('/n'+str(timestamp)+) + f.write('/n'+str(timestamp)) #create new dir os.mkdir(indexpath) ix = create_in(indexpath, schema) From a8dc9231c6e53d83b7d404f19f674e2d44a6ee2d Mon Sep 17 00:00:00 2001 From: = Date: Thu, 24 Aug 2017 16:43:42 +0200 Subject: [PATCH 3/3] Typo2.. --- bin/Indexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Indexer.py b/bin/Indexer.py index cb0a6b9d..be4c899c 100755 --- a/bin/Indexer.py +++ b/bin/Indexer.py @@ -119,7 +119,7 @@ if __name__ == "__main__": indexname = str(timestamp) #update all_index with open(indexRegister_path, "a") as f: - f.write('/n'+str(timestamp)) + f.write('\n'+str(timestamp)) #create new dir os.mkdir(indexpath) ix = create_in(indexpath, schema)