From 7d0ba03536d647e9547968a03f0d24f005077231 Mon Sep 17 00:00:00 2001 From: Brian Rosmaita Date: Fri, 21 May 2021 11:06:16 -0400 Subject: [PATCH] trivial: correct comment Change-Id: Ia387ec1659f53babed8fc2fab9c3495d8f799f73 --- os_brick/exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os_brick/exception.py b/os_brick/exception.py index 8b899cd33..c241119b9 100644 --- a/os_brick/exception.py +++ b/os_brick/exception.py @@ -29,7 +29,7 @@ class BrickException(Exception): """Base Brick Exception To correctly use this class, inherit from it and define - a 'msg_fmt' property. That msg_fmt will get printf'd + a 'message' property. That message will get printf'd with the keyword arguments provided to the constructor. """ message = _("An unknown exception occurred.")