removed unused ret variable

This commit is contained in:
Thomas S Hatch 2011-03-15 17:02:30 -06:00
parent 5ac8103568
commit ecef895229

View file

@ -30,7 +30,6 @@ def get( name ):
salt '*' sysctl.get net.ipv4.ip_forward
'''
cmd = 'sysctl -n %s' % name
ret = {}
out = subprocess.Popen(cmd,
shell=True,
stdout=subprocess.PIPE).communicate()[0]