summaryrefslogtreecommitdiffstats
path: root/cobbler/item_system.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_system.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_system.py')
-rw-r--r--cobbler/item_system.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cobbler/item_system.py b/cobbler/item_system.py
index baaf2fb..c2242ca 100644
--- a/cobbler/item_system.py
+++ b/cobbler/item_system.py
@@ -20,6 +20,8 @@ from rhpl.translate import _, N_, textdomain, utf8
class System(item.Item):
+ TYPE_NAME = _("system")
+
def make_clone(self):
ds = self.to_datastruct()
cloned = System(self.config)