mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
commit
c6987866a2
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ A runner module to collect and display the inline documentation from the
|
|||
various module types
|
||||
'''
|
||||
# Import Python libs
|
||||
from __future__ import absolute_import
|
||||
from __future__ import absolute_import, print_function
|
||||
import itertools
|
||||
|
||||
# Import salt libs
|
||||
|
@ -72,7 +72,7 @@ def execution():
|
|||
for v in six.itervalues(ret):
|
||||
docs.update(v)
|
||||
except SaltClientError as exc:
|
||||
print exc # pylint: disable=W1698
|
||||
print(exc) # pylint: disable=W1698
|
||||
return []
|
||||
|
||||
i = itertools.chain.from_iterable([six.iteritems(i) for i in six.itervalues(docs)])
|
||||
|
|
Loading…
Add table
Reference in a new issue