From 5986217c79f2fe01e21f6910affa896bd2516f02 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Wed, 1 May 2024 15:49:51 +0200 Subject: [PATCH] pybind/rbd: adjust error message in deep_copy() Signed-off-by: Ilya Dryomov --- src/pybind/rbd/rbd.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/rbd/rbd.pyx b/src/pybind/rbd/rbd.pyx index e8b7e607c4043..df176a410a940 100644 --- a/src/pybind/rbd/rbd.pyx +++ b/src/pybind/rbd/rbd.pyx @@ -3519,7 +3519,7 @@ cdef class Image(object): finally: rbd_image_options_destroy(opts) if ret < 0: - raise make_ex(ret, 'error copying image %s to %s' % (self.name, dest_name)) + raise make_ex(ret, 'error deep copying image %s to %s' % (self.name, dest_name)) @requires_not_closed def list_snaps(self): -- 2.39.5