From 4d539e60f9589e3d3b5fcef4ea49d894eddb0086 Mon Sep 17 00:00:00 2001 From: nh916 Date: Thu, 7 Sep 2023 13:07:46 -0700 Subject: [PATCH] changed log message for delete instead of using backticks ` I am now using single quotes. I think that is much more standard and cleaner --- src/cript/api/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cript/api/api.py b/src/cript/api/api.py index f6a0c6d0f..df00b2447 100644 --- a/src/cript/api/api.py +++ b/src/cript/api/api.py @@ -1068,7 +1068,7 @@ def delete(self, node) -> None: After the node has been successfully deleted, a log is written to the terminal if `cript.API.verbose = True` ```bash - INFO: Deleted `Data` with UUID of `80bfc642-157e-4692-a547-97c470725397` from CRIPT API. + INFO: Deleted 'Data' with UUID of '80bfc642-157e-4692-a547-97c470725397' from CRIPT API. ``` Warnings @@ -1107,4 +1107,4 @@ def delete(self, node) -> None: if response["code"] != 200: raise APIError(api_error=str(response), http_method="DELETE", api_url=delete_node_api_url) - self.logger.info(f"Deleted `{node.node_type}` with UUID of `{node.uuid}` from CRIPT API.") + self.logger.info(f"Deleted '{node.node_type}' with UUID of '{node.uuid}' from CRIPT API.")