From 26be1896894c10fcb081dbb0aa18d6602434b76e Mon Sep 17 00:00:00 2001 From: Nitin Madhok Date: Wed, 26 Aug 2015 13:08:13 -0400 Subject: [PATCH] Doc fix. Fixes #26656 --- salt/runners/pillar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/salt/runners/pillar.py b/salt/runners/pillar.py index aeb8cac806..456df617a8 100644 --- a/salt/runners/pillar.py +++ b/salt/runners/pillar.py @@ -40,8 +40,8 @@ def show_top(minion=None, saltenv='base'): def show_pillar(minion='*', **kwargs): ''' Returns the compiled pillar either of a specific minion - or just the global available pillars. I assume that no minion - is using the id ``*``. + or just the global available pillars. This function assumes + that no minion has the id ``*``. CLI Example: @@ -72,7 +72,7 @@ def show_pillar(minion='*', **kwargs): opts = salt.config.master_config('/etc/salt/master') runner = salt.runner.RunnerClient(opts) pillar = runner.cmd('pillar.show_pillar', []) - print pillarĀ¬ + print(pillar) ''' saltenv = 'base'