From f76a5abf6f1e97483bd974a905df26d1f6037c49 Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Fri, 14 Oct 2011 11:50:40 +0200 Subject: [PATCH] /./,/ Signed-off-by: Steven Armstrong --- lib/cdist/core/object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cdist/core/object.py b/lib/cdist/core/object.py index 60ae59f4..a802a457 100644 --- a/lib/cdist/core/object.py +++ b/lib/cdist/core/object.py @@ -40,7 +40,7 @@ class IllegalObjectIdError(cdist.Error): self.message = message or 'Illegal object id' def __str__(self): - return '%s: %s' % (self.message, os.path.join(self.type_name. self.object_id)) + return '%s: %s' % (self.message, os.path.join(self.type_name, self.object_id)) class Object(object):