Skip to content

Commit 14ee3b1

Browse files
committed
fix to remove cp 10.x appended seperator on path names
1 parent 0282c05 commit 14ee3b1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

PyDOS.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def PyDOS():
7373
global envVars
7474
if "envVars" not in globals().keys():
7575
envVars = {}
76-
_VER = "1.50"
76+
_VER = "1.51"
7777
prmpVals = ['>','(',')','&','|','\x1b','\b','<','=',' ',_VER,'\n','$','']
7878

7979
print("Starting Py-DOS...")
@@ -629,6 +629,8 @@ def readBATFile(BATfile):
629629
(validPath,tmpDir) = chkPath(aPath)
630630
if cmd in ["DELETE","DEL","TYPE","MORE","MKDIR","MD"]:
631631
tmpDir = pFmt(tmpDir)
632+
else:
633+
tmpDir = pFmt(tmpDir,False)
632634

633635
if cmd == "" or cmd == "REM":
634636
continue

0 commit comments

Comments
 (0)