[py-svn] r10499 - py/branch/py-collect/test/tkinter

hpk at codespeak.net hpk at codespeak.net
Sat Apr 9 23:41:00 CEST 2005


Author: hpk
Date: Sat Apr  9 23:41:00 2005
New Revision: 10499

Modified:
   py/branch/py-collect/test/tkinter/tkgui.py
Log:
making launching of an editor work ... (for me)


Modified: py/branch/py-collect/test/tkinter/tkgui.py
==============================================================================
--- py/branch/py-collect/test/tkinter/tkgui.py	(original)
+++ py/branch/py-collect/test/tkinter/tkgui.py	Sat Apr  9 23:41:00 2005
@@ -123,8 +123,8 @@
                   #"emacsclient --no-wait ")
         if editor:
             print "%s +%s %s" % (editor, line, file)
-            py.process.cmdexec('%s +%s %s' % (editor, line, file))
-            
+            #py.process.cmdexec('%s +%s %s' % (editor, line, file))
+            os.system('%s +%s %s' % (editor, line, file))
 
     def create_new_nodes(self, node):
         repos = self.repositorycommand()



More information about the pytest-commit mailing list