X Tutup
Skip to content

Commit 3d40424

Browse files
committed
Fixed 'register_python*.bat' scripts following changes in command line options
(these changes were made in revision 9a62581ae693)
1 parent 9d93da1 commit 3d40424

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

make.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -507,13 +507,10 @@ def _create_batch_scripts(self):
507507
options='--light')
508508
self.create_python_batch('register_python.bat',
509509
r'\Scripts', 'register_python')
510-
self.create_batch_script('register_this_python.bat', r"""@echo off
511-
call %~dp0env.bat
512-
call %~dp0register_python.bat %WINPYDIR%""")
513-
self.create_batch_script('register_this_python_for_all.bat',
510+
self.create_batch_script('register_python_for_all.bat',
514511
r"""@echo off
515512
call %~dp0env.bat
516-
call %~dp0register_python.bat --all %WINPYDIR%""")
513+
call %~dp0register_python.bat --all""")
517514
self.create_python_batch('wpcp.bat', r'\Scripts', 'wpcp')
518515
self.create_python_batch('pyqt_demo.bat',
519516
r'\Lib\site-packages\PyQt4\examples\demos\qtdemo', 'qtdemo.pyw')

0 commit comments

Comments
 (0)
X Tutup