mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1900 from bostrick/devel
protect PluginLoader._extra_dirs from appending None
This commit is contained in:
commit
51180fa344
1 changed files with 2 additions and 1 deletions
|
@ -70,7 +70,8 @@ class PluginLoader(object):
|
|||
|
||||
def add_directory(self, directory):
|
||||
"""Adds an additional directory to the search path"""
|
||||
self._extra_dirs.append(directory)
|
||||
if directory is not None:
|
||||
self._extra_dirs.append(directory)
|
||||
|
||||
def print_paths(self):
|
||||
"""Returns a string suitable for printing of the search path"""
|
||||
|
|
Loading…
Reference in a new issue