From 9f1b41f621ea26dae485f442c146daccdb2053cd Mon Sep 17 00:00:00 2001 From: "bodong.yang" Date: Thu, 2 Nov 2023 07:13:26 +0000 Subject: [PATCH] errors: fix get_error_report missing module name info --- otaclient/app/errors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/otaclient/app/errors.py b/otaclient/app/errors.py index db21bbf40..81f901c9a 100644 --- a/otaclient/app/errors.py +++ b/otaclient/app/errors.py @@ -95,6 +95,7 @@ def get_error_report(self, title: str = "") -> str: """The detailed failure report for debug use.""" return ( f"\n{title}\n" + f"@module: {self.module}" "\n------ failure_reason ------\n" f"{self.get_failure_reason()}" "\n------ end of failure_reason ------\n"