Pylint updates , removing whitespace

This commit is contained in:
puneet kandhari 2015-06-30 12:53:20 -05:00
parent 532d315dd1
commit f8dc6030e7

View file

@ -96,14 +96,14 @@ def list_(show_all=False, return_yaml=True):
def is_enabled(name):
'''
List a Job only if its enabled
CLI Example:
.. code-block:: bash
salt '*' schedule.is_enabled name=job_name
'''
current_schedule = __salt__['schedule.list'](show_all=False, return_yaml=False)
if name in current_schedule:
return current_schedule[name]