parent
7dbccecd6f
commit
ec66722faa
|
@ -18,7 +18,6 @@
|
||||||
import gtk
|
import gtk
|
||||||
import gobject
|
import gobject
|
||||||
import os
|
import os
|
||||||
import sys
|
|
||||||
import time
|
import time
|
||||||
import urllib
|
import urllib
|
||||||
|
|
||||||
|
@ -745,9 +744,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('%s history_manager.py' % (sys.executable,))
|
helpers.exec_command('python history_manager.py')
|
||||||
else: # Unix user
|
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):
|
def get_and_connect_advanced_menuitem_menu(self, account):
|
||||||
'''adds FOR ACCOUNT options'''
|
'''adds FOR ACCOUNT options'''
|
||||||
|
|
Loading…
Reference in New Issue