From 880253f9d30c170938ac37b857d19b537b5b579f Mon Sep 17 00:00:00 2001 From: Dimitur Kirov Date: Sat, 27 May 2006 07:46:06 +0000 Subject: [PATCH] say where is the pid file, which must be deleted --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 78d5e0a31..54607878d 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -147,7 +147,7 @@ pid_filename += '.pid' if os.path.exists(pid_filename): pritext = _('Gajim is already running') - sectext = _('Exit the already running Gajim. Quiting...') + sectext = _('Exit the already running Gajim, or delete pid file:\n "%s".\n Quiting...' % pid_filename) dlg = gtk.MessageDialog(None, gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, message_format = pritext)