butter kvm list_drives returns a list now

This commit is contained in:
Thomas S Hatch 2011-04-01 14:27:10 -06:00
parent 0209772cbc
commit 7b2b9b7b2d

View File

@ -119,7 +119,10 @@ def local_images(local_path):
CLI Example:
salt '*' buttervm.local_images <image_path>
'''
return os.listdir(local_path).sort()
images = os.listdir(local_path)
images.sort()
return images
def full_butter_data(local_path):
'''