8000 Merge pull request #1300 from stonebig/master · winpython/winpython@ee5315c · GitHub
[go: up one dir, main page]

Skip to content

Commit ee5315c

Browse files
authored
Merge pull request #1300 from stonebig/master
fix glitches
2 parents f67806c + 265fd04 commit ee5315c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1710,7 +1710,7 @@ def _create_batch_scripts(self):
17101710
rem cd/D "%WINPYWORKDIR1%"
17111711
rem "%WINPYDIR%\python.exe" -m winpython.controlpanel %*
17121712
if not "%WINPYWORKDIR%"=="%WINPYWORKDIR1%" cd/d %WINPYWORKDIR1%
1713-
cmd.exe /k "echo wppm & echo & wppm"
1713+
cmd.exe /k "echo wppm & wppm"
17141714
""",
17151715
do_changes=changes,
17161716
)

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '7.3.20240303'
31+
__version__ = '7.3.20240309'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/wppm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -858,12 +858,12 @@ def main(test=False):
858858
if args.pipdown:
859859
pip = piptree.pipdata(Target=targetpython)
860860
pack, extra, *other = (args.fname + "[").replace("]", "[").split("[")
861-
pip.down(pack, extra, args.levels_of_depth, verbose=args.verbose)
861+
pip.down(pack, extra, args.levels, verbose=args.verbose)
862862
sys.exit()
863863
elif args.pipup:
864864
pip = piptree.pipdata(Target=targetpython)
865865
pack, extra, *other = (args.fname + "[").replace("]", "[").split("[")
866-
pip.up(pack, extra, args.levels_of_depth, verbose=args.verbose)
866+
pip.up(pack, extra, args.levels, verbose=args.verbose)
867867
sys.exit()
868868
elif args.list:
869869
pip = piptree.pipdata(Target=targetpython)

0 commit comments

Comments
 (0)
0