[pywin32-checkins] pywin32/com/win32com/test util.py,1.9,1.10
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-11 01:02:55
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24654 Modified Files: util.py Log Message: Use --unattended installs to avoid vista's UAC in the test suite Index: util.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/util.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** util.py 31 Aug 2007 02:08:14 -0000 1.9 --- util.py 11 Nov 2008 01:02:51 -0000 1.10 *************** *** 23,27 **** def RegisterPythonServer(filename, verbose=0): ! cmd = '%s "%s" > nul 2>&1' % (win32api.GetModuleFileName(0), filename) if verbose: print "Registering engine", filename --- 23,27 ---- def RegisterPythonServer(filename, verbose=0): ! cmd = '%s "%s" --unattended > nul 2>&1' % (win32api.GetModuleFileName(0), filename) if verbose: print "Registering engine", filename |