mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ansible doc does not need plugin deprecation error
This commit is contained in:
parent
2ea5bb8dbb
commit
74421f42e1
2 changed files with 4 additions and 4 deletions
|
@ -99,7 +99,7 @@ class DocCLI(CLI):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# if the module lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
|
# if the module lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
|
||||||
filename = module_loader.find_plugin(module, mod_type='.py')
|
filename = module_loader.find_plugin(module, mod_type='.py', ignore_deprecated=True)
|
||||||
if filename is None:
|
if filename is None:
|
||||||
display.warning("module %s not found in %s\n" % (module, DocCLI.print_paths(module_loader)))
|
display.warning("module %s not found in %s\n" % (module, DocCLI.print_paths(module_loader)))
|
||||||
continue
|
continue
|
||||||
|
@ -185,7 +185,7 @@ class DocCLI(CLI):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# if the module lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
|
# if the module lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
|
||||||
filename = module_loader.find_plugin(module, mod_type='.py')
|
filename = module_loader.find_plugin(module, mod_type='.py', ignore_deprecated=True)
|
||||||
|
|
||||||
if filename is None:
|
if filename is None:
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -221,7 +221,7 @@ class PluginLoader:
|
||||||
self._extra_dirs.append(directory)
|
self._extra_dirs.append(directory)
|
||||||
self._paths = None
|
self._paths = None
|
||||||
|
|
||||||
def find_plugin(self, name, mod_type=''):
|
def find_plugin(self, name, mod_type='', ignore_deprecated=False):
|
||||||
''' Find a plugin named name '''
|
''' Find a plugin named name '''
|
||||||
|
|
||||||
if mod_type:
|
if mod_type:
|
||||||
|
@ -297,7 +297,7 @@ class PluginLoader:
|
||||||
alias_name = '_' + name
|
alias_name = '_' + name
|
||||||
# We've already cached all the paths at this point
|
# We've already cached all the paths at this point
|
||||||
if alias_name in pull_cache:
|
if alias_name in pull_cache:
|
||||||
if not os.path.islink(pull_cache[alias_name]):
|
if not ignore_deprecated and not os.path.islink(pull_cache[alias_name]):
|
||||||
display.deprecated('%s is kept for backwards compatibility '
|
display.deprecated('%s is kept for backwards compatibility '
|
||||||
'but usage is discouraged. The module '
|
'but usage is discouraged. The module '
|
||||||
'documentation details page may explain '
|
'documentation details page may explain '
|
||||||
|
|
Loading…
Reference in a new issue