From 741b8ae1cfc507902eb57e20f003487af13e40c0 Mon Sep 17 00:00:00 2001 From: Ethan Furman Date: Tue, 15 Jun 2021 18:51:19 -0700 Subject: bpo-44342: [Enum] sync current docs to 3.10 (GH-26750) --- Lib/enum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/enum.py') diff --git a/Lib/enum.py b/Lib/enum.py index 49c46ea86db..90777988dd0 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -1637,7 +1637,7 @@ class verify: else: value = 'combined values of 0x%x' % missing_value raise ValueError( - 'invalid Flag %r: %s %s [use `enum.show_flag_values(value)` for details]' + 'invalid Flag %r: %s %s [use enum.show_flag_values(value) for details]' % (cls_name, alias, value) ) return enumeration -- cgit v1.2.3