diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2021-06-16 01:51:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 01:51:19 (GMT) |
commit | 741b8ae1cfc507902eb57e20f003487af13e40c0 (patch) | |
tree | 685e72af60f09294fbe5195ce2fc08e540181afe /Lib/enum.py | |
parent | ac38a9f2dfbba95f5d4338eb11a0221d38ef9328 (diff) | |
download | cpython-741b8ae1cfc507902eb57e20f003487af13e40c0.zip cpython-741b8ae1cfc507902eb57e20f003487af13e40c0.tar.gz cpython-741b8ae1cfc507902eb57e20f003487af13e40c0.tar.bz2 |
bpo-44342: [Enum] sync current docs to 3.10 (GH-26750)
Diffstat (limited to 'Lib/enum.py')
-rw-r--r-- | Lib/enum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py index 49c46ea..9077798 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 |