From a7276b2c23d38d6b12e2597aa092916f7fa70845 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 10 May 2010 14:17:18 -0400 Subject: [PATCH] clone: Clarify diagnostic message --- src/virtManager/clone.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/virtManager/clone.py b/src/virtManager/clone.py index 4e889e6a6..e68045454 100644 --- a/src/virtManager/clone.py +++ b/src/virtManager/clone.py @@ -799,8 +799,8 @@ def can_we_clone(conn, vol, path): msg = _("Cannot clone unmanaged remote storage.") elif not os.access(path, os.R_OK): if is_dev: - msg = _("Block devices to clone should be managed\n" - "storage volumes.") + msg = _("Block devices to clone must be libvirt\n" + "managed storage volumes.") else: msg = _("No write access to parent directory.") elif not os.path.exists(path):