summaryrefslogtreecommitdiffstats
path: root/cobbler/serializer.py
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler/serializer.py')
-rw-r--r--cobbler/serializer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/serializer.py b/cobbler/serializer.py
index 39cb982..d35bdb1 100644
--- a/cobbler/serializer.py
+++ b/cobbler/serializer.py
@@ -37,7 +37,7 @@ def serialize(obj):
os.makedirs(dirname)
# evidentally this doesn't throw exceptions.
except OSError, ose:
- raise CX(_("Need permissions to write to %s") % os.path.dirname(dirname))
+ pass
try:
fd = open(filename,"w+")
except IOError, ioe3: