fixes mypy error:
volumes/fs/fs_util.py: note: In function "get_ancestor_xattr":
volumes/fs/fs_util.py:129: error: Too few arguments for "VolumeException"
Fixes: https://tracker.ceph.com/issues/44393
Signed-off-by: Michael Fritch <mfritch@suse.com>
return fs.getxattr(path, attr).decode('utf-8')
except cephfs.NoData as e:
if path == "/":
- raise VolumeException(-e.args[0]. e.args[1])
+ raise VolumeException(-e.args[0], e.args[1])
else:
return get_ancestor_xattr(fs, os.path.split(path)[0], attr)