From b96811b7365b93e489f1faefd19d5617f539b828 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Tue, 14 Jul 2009 17:10:57 -0400 Subject: [PATCH] Improve connection delete confirmation message. --- src/virtManager/manager.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/virtManager/manager.py b/src/virtManager/manager.py index 4d262ad07..4a186ab32 100644 --- a/src/virtManager/manager.py +++ b/src/virtManager/manager.py @@ -821,9 +821,8 @@ class vmmManager(gobject.GObject): if conn is None: return - result = self.err.yes_no(_("This will remove the connection \"%s\"," - "are you sure?") % - self.rows[conn.get_uri()][ROW_NAME]) + result = self.err.yes_no(_("This will remove the connection:\n\n%s\n\n" + "Are you sure?") % conn.get_uri()) if not result: return self.engine.remove_connection(conn.get_uri())