Skip to content

Commit

Permalink
Merge pull request #25020 from martinhoefling/develop
Browse files Browse the repository at this point in the history
Fix for issue #25016
  • Loading branch information
Mike Place committed Jun 29, 2015
2 parents 5965673 + 8b4aeff commit cfd904d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/runners/doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def execution():
print(exc) # pylint: disable=W1698
return []

i = itertools.chain.from_iterable([six.iteritems(i) for i in six.itervalues(docs)])
i = itertools.chain.from_iterable([six.iteritems(docs['ret'])])
ret = dict(list(i))

return ret

0 comments on commit cfd904d

Please sign in to comment.