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.")