diff mbox series

[auh,2/5] Fix identation error

Message ID 20260104004708.2494403-4-t.f.g.geelen@gmail.com
State New
Headers show
Series [auh,1/5] README: fix version numbering. | expand

Commit Message

Tom Geelen Jan. 4, 2026, 12:46 a.m. UTC
This module was not working correctly due to a mis-indentation of the
__str__ method.

---
 modules/errors.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/modules/errors.py b/modules/errors.py
index 48e8b70..7adb103 100644
--- a/modules/errors.py
+++ b/modules/errors.py
@@ -109,5 +109,5 @@  class IntegrationError(Error):
                 % pkg_ctx['PN'], stdout)
         self.pkg_ctx = pkg_ctx
 
-        def __str__(self):
-            return "Failed(integrate)"
+    def __str__(self):
+        return "Failed(integrate)"