From 74ff401e1d5cd6ccf6304111f53ab82320b863a3 Mon Sep 17 00:00:00 2001 From: = Date: Thu, 24 Aug 2017 16:41:30 +0200 Subject: [PATCH] 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)