summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--combox/file.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/combox/file.py b/combox/file.py
index cda910b..461d313 100644
--- a/combox/file.py
+++ b/combox/file.py
@@ -104,10 +104,7 @@ def mk_nodedir(directory, config):
for node in nodes:
dir_path = path.join(node, rel_path)
- try:
- os.mkdir(dir_path)
- except OSError, e:
- print e, "Something wrong. report bug to sravik@bgsu.edu"
+ mk_dir(dir_path)
def mk_dir(directory):