From ec66722faaafc3f1bf181a520acb992e472ae581 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 28 Nov 2006 12:49:36 +0000 Subject: [PATCH] revert [7551]. fixes #2722. see #2720 --- src/roster_window.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index 3729bf3b2..78f24af9c 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -18,7 +18,6 @@ import gtk import gobject import os -import sys import time import urllib @@ -745,9 +744,9 @@ class RosterWindow: if os.path.exists('history_manager.exe'): # user is running stable helpers.exec_command('history_manager.exe') else: # user is running svn - helpers.exec_command('%s history_manager.py' % (sys.executable,)) + helpers.exec_command('python history_manager.py') else: # Unix user - helpers.exec_command('%s history_manager.py &' % (sys.executable,)) + helpers.exec_command('python history_manager.py &') def get_and_connect_advanced_menuitem_menu(self, account): '''adds FOR ACCOUNT options'''