mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
The return from sys.doc is sorted now
This commit is contained in:
parent
d75f9500af
commit
ab1b960ff8
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class SaltCMD(object):
|
|||
if not docs.has_key(fun):
|
||||
if ret[host][fun]:
|
||||
docs[fun] = ret[host][fun]
|
||||
for fun in docs:
|
||||
for fun in sorted(docs):
|
||||
print fun + ':'
|
||||
print docs[fun]
|
||||
print ''
|
||||
|
|
Loading…
Add table
Reference in a new issue