diff options
author | Guido van Rossum <guido@python.org> | 1997-10-07 14:55:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-07 14:55:11 (GMT) |
commit | 8731e5c35f26bfb34da454e4da673051a4bcbe48 (patch) | |
tree | 70c36c8774ad8e1164ea04327cd775e2bd40a92b | |
parent | 04d73c495ef132a898af997d33fac0badfc3c519 (diff) | |
download | cpython-8731e5c35f26bfb34da454e4da673051a4bcbe48.zip cpython-8731e5c35f26bfb34da454e4da673051a4bcbe48.tar.gz cpython-8731e5c35f26bfb34da454e4da673051a4bcbe48.tar.bz2 |
The target directory is now called dos-8x3, not dos_8x3.
-rw-r--r-- | PC/make8x3.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/PC/make8x3.py b/PC/make8x3.py index c0b36dd..a756209 100644 --- a/PC/make8x3.py +++ b/PC/make8x3.py @@ -1,13 +1,13 @@ #! /usr/bin/env python # This program reads all *.py and test/*.py in "libDir", and -# copies those files with illegal DOS names to libDir/dos_8x3. +# copies those files with illegal DOS names to libDir/dos-8x3. # Names are illegal if they are longer than 8x3 chars or if they # contain uppercase chars. It also tests for name collisions. -# You must first create the directory libDir/dos_8x3 yourself. -# You should remove all files in dos_8x3 if you run it again. +# You must first create the directory libDir/dos-8x3 yourself. +# You should remove all files in dos-8x3 if you run it again. -# CHANGE libDir TO THE CORRECT DIRECTORY. RM dos_8x3/* FIRST. +# CHANGE libDir TO THE CORRECT DIRECTORY. RM dos-8x3/* FIRST. import sys, os, regex, string @@ -16,7 +16,7 @@ libDir = "./Lib" # Location of Python Lib def make8x3(): reg_uppercase = regex.compile("[A-Z]") collisions = {} # See if all names are unique in first 8 chars. - destDir = os.path.join(libDir, "dos_8x3") + destDir = os.path.join(libDir, "dos-8x3") if not os.path.isdir(destDir): print "Please create the directory", destDir, "first." err() |