From cc9a147dc0a0ab87629f016aef8a2cda60a3576c Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 27 Mar 2006 13:42:28 +0000 Subject: [PATCH] startfile() instead of system() for windows --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index f40783e53..dded10b43 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -566,7 +566,7 @@ class RosterWindow: def on_history_manager_menuitem_activate(self, widget): if os.name == 'nt': # FIXME: test it actually works.. if os.path.exists('history_manager.exe'): # he's running stable - os.system('history_manager.exe') + os.startfile('history_manager.exe') else: # he is svn user try: os.startfile('history_manager.py')