commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/navigator/src GNObjects.py


From: James Thompson
Subject: gnue/navigator/src GNObjects.py
Date: Thu, 14 Feb 2002 18:07:44 -0500

CVSROOT:        /cvsroot/gnue
Module name:    gnue
Changes by:     James Thompson <address@hidden> 02/02/14 18:07:42

Modified files:
        navigator/src  : GNObjects.py 

Log message:
        Windows updates syncing machines

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/navigator/src/GNObjects.py.diff?tr1=1.5&tr2=1.6&r1=text&r2=text

Patches:
Index: gnue/navigator/src/GNObjects.py
diff -c gnue/navigator/src/GNObjects.py:1.5 gnue/navigator/src/GNObjects.py:1.6
*** gnue/navigator/src/GNObjects.py:1.5 Thu Feb 14 01:01:48 2002
--- gnue/navigator/src/GNObjects.py     Thu Feb 14 18:07:42 2002
***************
*** 69,81 ****
      else:
        formfile = step.location
  
-     GDebug.printMesg(1,'Running "%s on form %s "'%(formCommand,formfile))
- 
      if sys.platform != 'win32':
        os.spawnlpe(os.P_NOWAIT,formCommand,formCommand,formfile,os.environ)
      else:
!       # TODO: Not tested
!       os.spawnle(os.P_NOWAIT,formCommand,formCommand,formfile,os.environ)
  
    def _runApp(self, step):
  
--- 69,83 ----
      else:
        formfile = step.location
  
      if sys.platform != 'win32':
+       GDebug.printMesg(1,'Running command " %s %s"'%(formCommand,formfile))
        os.spawnlpe(os.P_NOWAIT,formCommand,formCommand,formfile,os.environ)
      else:
!       command = string.split("%s"%(formCommand))
!       command.append('"%s"' % formfile)
!   
!       GDebug.printMesg(1,'Running command " %s "'%(command))
!       os.spawnve(os.P_NOWAIT,command[0],command,os.environ)
  
    def _runApp(self, step):
  



reply via email to

[Prev in Thread] Current Thread [Next in Thread]