summaryrefslogtreecommitdiffstats
path: root/cobbler/collection_profiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler/collection_profiles.py')
-rw-r--r--cobbler/collection_profiles.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cobbler/collection_profiles.py b/cobbler/collection_profiles.py
index bebaf49..ac1798e 100644
--- a/cobbler/collection_profiles.py
+++ b/cobbler/collection_profiles.py
@@ -45,6 +45,7 @@ class Profiles(collection.Collection):
"""
Remove element named 'name' from the collection
"""
+ name = name.lower()
for v in self.config.systems():
if v.profile == name:
raise CX(_("removal would orphan system: %s") % v.name)