Closed deviantony closed 9 years ago
In _filesystemutils, method _mkdirpath.
https://github.com/deviantony/xtrabackup-scripts/blob/develop/xtrabackup%2Ffilesystem_utils.py#L35
Raise a ProgramError instead of an OSError:
try: os.makedirs(path, mode) except OSError as exc: if exc.errno == errno.EEXIST and os.path.isdir(path): pass else: raise ProgramError("Unable to create directory" + path)
In _filesystemutils, method _mkdirpath.
https://github.com/deviantony/xtrabackup-scripts/blob/develop/xtrabackup%2Ffilesystem_utils.py#L35
Raise a ProgramError instead of an OSError: