Change Law -> Live

This commit is contained in:
Kiryl
2021-09-29 20:22:47 +03:00
parent 7cf90b25f7
commit 61d85f6c22
5 changed files with 20 additions and 21 deletions

View File

@@ -129,7 +129,7 @@ class BookSolver:
content_dict = self.get_converted_book()
self.write_to_json(content_dict)
self.send_json_content_to_server(content_dict)
self.logger_object.log(f'End of the conversion to LawCarta format. Check {self.output_path}.')
self.logger_object.log(f'End of the conversion to LiveCarta format. Check {self.output_path}.')
except Exception as exc:
self.status_wrapper.set_error()
@@ -142,7 +142,7 @@ class BookSolver:
with open('tmp.json') as f:
d = json.load(f)
self.send_json_content_to_server(d)
self.logger_object.log(f'End of the conversion to LawCarta format. Check {self.output_path}.')
self.logger_object.log(f'End of the conversion to LiveCarta format. Check {self.output_path}.')
except Exception as exc:
self.status_wrapper.set_error()