From ada5753cb9f17bde7509b7f1028f6ab3c7ee1254 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Thu, 22 Mar 2007 18:37:23 +0000
Subject: [PATCH] detect correctly running instances under win with built
 version. fixes #3050

---
 src/gajim.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gajim.py b/src/gajim.py
index abc518aa10..5fbefeaf43 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -267,7 +267,7 @@ def pid_alive():
 					return b.contents.szExeFile
 				f = k.Process32Next(h, b)
 
-		if get_p(pid) == 'python.exe':
+		if get_p(pid) in ('python.exe', 'gajim.exe'):
 			return True
 		return False
 	try:
-- 
GitLab