/type/cdist_type/

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-10 16:50:56 +02:00
parent bbcecc03ef
commit af8f006fc6
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ class Object(object):
if DOT_CDIST in dirs:
yield os.path.relpath(path, object_base_path)
def __init__(self, type, base_path, object_id=None):
self.type = type # instance of Type
def __init__(self, cdist_type, base_path, object_id=None):
self.type = cdist_type # instance of Type
self.base_path = base_path
self.object_id = object_id
self.name = os.path.join(self.type.name, self.object_id)