Commit b3721791 by serpucga

Changed recovery file format extension

Don't know what I was thinking when I wrote ".csv" when this is clearly a JSON file.
parent 662b9e66
......@@ -316,7 +316,8 @@ def build_recovery_filepath(dbname: str) -> str:
datetime_str = "%04d%02d%02d-%02d%02d%02d" %\
(now.year, now.month, now.day, now.hour, now.minute, now.second)
recovery_file_path = os.path.join(
recovery_dir, "recovery_" + dbname + "_" + datetime_str + ".csv")
recovery_dir,
"recovery_" + dbname + "_" + datetime_str + ".json")
return recovery_file_path
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment