summaryrefslogtreecommitdiffstats
path: root/cobbler/item_profile.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-12 16:24:06 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-12 16:24:06 -0400
commitfcbbaf14ae639c45c59275300b59106a753339c7 (patch)
tree3448d83dd996fd6b42d6e0bd1b824a57f749acc9 /cobbler/item_profile.py
parent0b8502cd2209b809ed8b98d8bab0086e169c4a0f (diff)
downloadthird_party-cobbler-fcbbaf14ae639c45c59275300b59106a753339c7.tar.gz
third_party-cobbler-fcbbaf14ae639c45c59275300b59106a753339c7.tar.xz
third_party-cobbler-fcbbaf14ae639c45c59275300b59106a753339c7.zip
Generalizes tree listing to allow for inheritance and arbitrary nesting
Diffstat (limited to 'cobbler/item_profile.py')
-rw-r--r--cobbler/item_profile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cobbler/item_profile.py b/cobbler/item_profile.py
index 491e346..09358b0 100644
--- a/cobbler/item_profile.py
+++ b/cobbler/item_profile.py
@@ -20,6 +20,8 @@ from rhpl.translate import _, N_, textdomain, utf8
class Profile(item.Item):
+ TYPE_NAME = _("profile")
+
def make_clone(self):
ds = self.to_datastruct()
cloned = Profile(self.config)