summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-03-28 11:04:38 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-03-28 11:04:38 -0400
commit2c64190e7e082867750e1be96181d411ae9dcf98 (patch)
tree6f8c9908ba7c8b8e0463013eaca24ce35268b0a2 /cobbler
parentd867ae6b78c6455b56069c78de1eee34644a7bd7 (diff)
downloadthird_party-cobbler-2c64190e7e082867750e1be96181d411ae9dcf98.tar.gz
third_party-cobbler-2c64190e7e082867750e1be96181d411ae9dcf98.tar.xz
third_party-cobbler-2c64190e7e082867750e1be96181d411ae9dcf98.zip
Store repo information as a list. This unbreaks --repos on "profile add"
Diffstat (limited to 'cobbler')
-rw-r--r--cobbler/item_profile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/item_profile.py b/cobbler/item_profile.py
index 45dce25..33e8594 100644
--- a/cobbler/item_profile.py
+++ b/cobbler/item_profile.py
@@ -95,7 +95,7 @@ class Profile(item.Item):
ok = False
break
if ok:
- self.repos = repos
+ self.repos = repolist
else:
raise cexceptions.CobblerException("no_repos")