make object.source a list

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
remotes/origin/feature_files_export
Steven Armstrong 14 years ago
parent 904396f6a5
commit 753936b7c3
  1. 2
      lib/cdist/core/object.py

@ -96,7 +96,7 @@ class Object(object):
changed = fsproperty.FileBooleanProperty(lambda obj: os.path.join(obj.absolute_path, "changed"))
prepared = fsproperty.FileBooleanProperty(lambda obj: os.path.join(obj.absolute_path, "prepared"))
ran = fsproperty.FileBooleanProperty(lambda obj: os.path.join(obj.absolute_path, "ran"))
source = fsproperty.FileStringProperty(lambda obj: os.path.join(obj.absolute_path, "source"))
source = fsproperty.FileListProperty(lambda obj: os.path.join(obj.absolute_path, "source"))
@property
def exists(self):

Loading…
Cancel
Save