Browse Source

Fix inconsistent use of tabs in indentation

paologalli 4 years ago
parent
commit
ddb7b0fc6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lcmlog-server

+ 1 - 1
lcmlog-server

@@ -245,7 +245,7 @@ def method_update():
 	file_list = os.listdir(DIR + "/data/")
 	open(DIR + "/data/.data", "x").close()
 	for name in file_list:
-        	newname = log_hash(name)
+        newname = log_hash(name)
 		if not log_check(name):
 			os.rename(DIR + "/data/" + name, DIR + "/data/" + newname)
 		log_add(newname)