diff --git a/twander.py b/twander.py index be319c9..0800980 100755 --- a/twander.py +++ b/twander.py @@ -4,7 +4,7 @@ # For Updates See: http://www.tundraware.com/Software/twander PROGNAME = "twander" -RCSID = "$Id: twander.py,v 1.100 2002/12/12 17:52:55 tundra Exp $" +RCSID = "$Id: twander.py,v 2.10 2002/12/14 20:42:48 tundra Exp $" VERSION = RCSID.split()[2] @@ -910,10 +910,8 @@ # Otherwise,actually execute the command else: - if OSNAME == 'nt': - thread.start_new_thread(os.system, (cmd,)) - else: - os.system(cmd) + thread.start_new_thread(os.system, (cmd,)) + # end of 'KeystrokeHandler()'