(plugin_path)
| 109 | |
| 110 | |
| 111 | def _add_plugin_path_to_sys_path(plugin_path): |
| 112 | for dirname in plugin_path.split(os.pathsep): |
| 113 | log.debug( |
| 114 | "Adding additional path from cli_legacy_plugin_path " |
| 115 | "configuration: %s", |
| 116 | dirname, |
| 117 | ) |
| 118 | sys.path.append(dirname) |