From b5162c7a473dc8402f81dabe542f856af77b3b88 Mon Sep 17 00:00:00 2001 From: Karolis Kalantojus Date: Tue, 8 Jan 2019 23:38:29 +0200 Subject: [PATCH] Documentation fix for developing own plugin (#50547) Seems like `self` is not necessary in the call args +label: docsite_pr --- docs/docsite/rst/dev_guide/developing_inventory.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/dev_guide/developing_inventory.rst b/docs/docsite/rst/dev_guide/developing_inventory.rst index 85b55e26115..792ba9dd67f 100644 --- a/docs/docsite/rst/dev_guide/developing_inventory.rst +++ b/docs/docsite/rst/dev_guide/developing_inventory.rst @@ -164,7 +164,7 @@ To facilitate this there are a few of helper functions used in the example below # this method will parse 'common format' inventory sources and # update any options declared in DOCUMENTATION as needed - config = self._read_config_data(self, path) + config = self._read_config_data(path) # if NOT using _read_config_data you should call set_options directly, # to process any defined configuration for this plugin,