diff options
author | Bob Halley <halley@dnspython.org> | 2020-08-03 07:00:38 -0700 |
---|---|---|
committer | Bob Halley <halley@dnspython.org> | 2020-08-03 07:00:38 -0700 |
commit | 76bfd7f0ba49e6c6937b4473f867b7dfafaf2107 (patch) | |
tree | 550e0bf9c170c4d297c49556f157c5a3d2dbb633 /dns/edns.py | |
parent | acc9a1dab2c1cf9d4b150b9f4f2554de54dfcf33 (diff) | |
download | dnspython-constants2.tar.gz |
fix case of enum namesconstants2
Diffstat (limited to 'dns/edns.py')
-rw-r--r-- | dns/edns.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/edns.py b/dns/edns.py index 1342d1e..199e8c4 100644 --- a/dns/edns.py +++ b/dns/edns.py @@ -352,7 +352,7 @@ def register_type(implementation, otype): _type_to_class[otype] = implementation -### BEGIN generated optiontype constants +### BEGIN generated OptionType constants NSID = OptionType.NSID DAU = OptionType.DAU @@ -365,4 +365,4 @@ KEEPALIVE = OptionType.KEEPALIVE PADDING = OptionType.PADDING CHAIN = OptionType.CHAIN -### END generated optiontype constants +### END generated OptionType constants |