[dsh] use same python version to launch history manager than the one used to launch gajim itself. fixes #2720

This commit is contained in:
Yann Leboulanger 2006-11-28 08:14:19 +00:00
parent b191b3f472
commit 9097f9d311
1 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@
import gtk import gtk
import gobject import gobject
import os import os
import sys
import time import time
import urllib import urllib
@ -744,9 +745,9 @@ class RosterWindow:
if os.path.exists('history_manager.exe'): # user is running stable if os.path.exists('history_manager.exe'): # user is running stable
helpers.exec_command('history_manager.exe') helpers.exec_command('history_manager.exe')
else: # user is running svn else: # user is running svn
helpers.exec_command('python history_manager.py') helpers.exec_command('%s history_manager.py' % (sys.executable,))
else: # Unix user else: # Unix user
helpers.exec_command('python history_manager.py &') helpers.exec_command('%s history_manager.py &' % (sys.executable,))
def get_and_connect_advanced_menuitem_menu(self, account): def get_and_connect_advanced_menuitem_menu(self, account):
'''adds FOR ACCOUNT options''' '''adds FOR ACCOUNT options'''