clean up docstrings for stats module

This commit is contained in:
Thomas S Hatch 2011-03-14 16:53:09 -06:00
parent c8f0bea2b0
commit 36496f32de

View file

@ -6,6 +6,9 @@ import subprocess
def uptime():
'''
Return the uptime for this minion
CLI Example:
salt '*' stats.uptime
'''
return subprocess.Popen(['uptime'],
stdout=subprocess.PIPE).communicate()[0]