PyAPI: remove deprecated 'wiki_url' for add-ons 'bl_info'

This was only kept for compatibility with older add-ons and has been
deprecated since 2.83.

Ref T85675
This commit is contained in:
Campbell Barton 2021-05-12 22:01:50 +10:00
parent bf23083852
commit aaa07a3a8f
Notes: blender-bot 2023-02-14 11:20:29 +01:00
Referenced by issue #85675, Blender 3.0 (Python API deprecation, updates)
1 changed files with 0 additions and 16 deletions

View File

@ -543,22 +543,6 @@ def module_bl_info(mod, info_basis=None):
if not addon_info["name"]:
addon_info["name"] = mod.__name__
# Replace 'wiki_url' with 'doc_url'.
doc_url = addon_info.pop("wiki_url", None)
if doc_url is not None:
# Unlikely, but possible that both are set.
if not addon_info["doc_url"]:
addon_info["doc_url"] = doc_url
if _bpy.app.debug:
print(
"Warning: add-on \"%s\": 'wiki_url' in 'bl_info' "
"is deprecated please use 'doc_url' instead!\n"
" %s" % (
addon_info['name'],
getattr(mod, "__file__", None),
)
)
doc_url = addon_info["doc_url"]
if doc_url:
doc_url_prefix = "{BLENDER_MANUAL_URL}"