From 7fd2c25cde91cab67a9c20a09f983ca27c77e5e1 Mon Sep 17 00:00:00 2001 From: Boris Feld Date: Thu, 10 Oct 2013 14:03:05 +0200 Subject: [PATCH] Fix cli example of salt.modules.network.arp Remove an useless '*' symbol in cli example of salt.modules.network.arp --- salt/modules/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/modules/network.py b/salt/modules/network.py index 1e09675d7f..edd8bc4d9b 100644 --- a/salt/modules/network.py +++ b/salt/modules/network.py @@ -159,7 +159,7 @@ def arp(): .. code-block:: bash - salt '*' '*' network.arp + salt '*' network.arp ''' ret = {} out = __salt__['cmd.run']('arp -an')