Improve error message
authorKarl O. Pinc <kop@karlpinc.com>
Sat, 21 Nov 2020 19:46:59 +0000 (13:46 -0600)
committerKarl O. Pinc <kop@karlpinc.com>
Sat, 21 Nov 2020 19:46:59 +0000 (13:46 -0600)
src/pgwui_menu/exceptions.py

index 26ca00db6ab2462e430f7c79c5562db893d3dbb5..91785823acf6a4396ca95f6f4c8e413b493e0e7a 100644 (file)
@@ -32,7 +32,7 @@ class BadOrderItemError(MenuError):
     def __init__(self, components, value):
         super().__init__(
             'The "pgwui.pgwui_menu.order" PGWUI setting must be '
-            f'a PGWUI component name, one of {components}; '
+            f'an installed PGWUI component name; installed are: {components}; '
             f'({value}) was supplied')