##// END OF EJS Templates
Fix, don't try to create '' directories
Jonathan Frederic -
Show More
@@ -48,7 +48,7 b' class FilesWriter(WriterBase):'
48
48
49 def _makedir(self, path):
49 def _makedir(self, path):
50 """Make a directory if it doesn't already exist"""
50 """Make a directory if it doesn't already exist"""
51 if not os.path.isdir(path):
51 if path and not os.path.isdir(path):
52 self.log.info("Making directory %s", path)
52 self.log.info("Making directory %s", path)
53 os.makedirs(path)
53 os.makedirs(path)
54
54
General Comments 0
You need to be logged in to leave comments. Login now