Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8731e5c

Browse files
committed
The target directory is now called dos-8x3, not dos_8x3.
1 parent 04d73c4 commit 8731e5c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

PC/make8x3.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#! /usr/bin/env python
22

33
# This program reads all *.py and test/*.py in "libDir", and
4-
# copies those files with illegal DOS names to libDir/dos_8x3.
4+
# copies those files with illegal DOS names to libDir/dos-8x3.
55
# Names are illegal if they are longer than 8x3 chars or if they
66
# contain uppercase chars. It also tests for name collisions.
7-
# You must first create the directory libDir/dos_8x3 yourself.
8-
# You should remove all files in dos_8x3 if you run it again.
7+
# You must first create the directory libDir/dos-8x3 yourself.
8+
# You should remove all files in dos-8x3 if you run it again.
99

10-
# CHANGE libDir TO THE CORRECT DIRECTORY. RM dos_8x3/* FIRST.
10+
# CHANGE libDir TO THE CORRECT DIRECTORY. RM dos-8x3/* FIRST.
1111

1212
import sys, os, regex, string
1313

@@ -16,7 +16,7 @@
1616
def make8x3():
1717
reg_uppercase = regex.compile("[A-Z]")
1818
collisions = {} # See if all names are unique in first 8 chars.
19-
destDir = os.path.join(libDir, "dos_8x3")
19+
destDir = os.path.join(libDir, "dos-8x3")
2020
if not os.path.isdir(destDir):
2121
print "Please create the directory", destDir, "first."
2222
err()

0 commit comments

Comments
 (0)