In _filesystem_utils_, method _mkdir_path_. 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 filesystem_utils, method mkdir_path.
https://github.com/deviantony/xtrabackup-scripts/blob/develop/xtrabackup%2Ffilesystem_utils.py#L35
Raise a ProgramError instead of an OSError: