summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/cvsfiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/scripts/cvsfiles.py')
-rwxr-xr-xTools/scripts/cvsfiles.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/scripts/cvsfiles.py b/Tools/scripts/cvsfiles.py
index d133a40..2168556 100755
--- a/Tools/scripts/cvsfiles.py
+++ b/Tools/scripts/cvsfiles.py
@@ -14,7 +14,6 @@ import os
import sys
import stat
import getopt
-import string
cutofftime = 0
@@ -51,7 +50,7 @@ def process(dir):
if cvsdir:
entries = os.path.join(cvsdir, "Entries")
for e in open(entries).readlines():
- words = string.split(e, '/')
+ words = e.split('/')
if words[0] == '' and words[1:]:
name = words[1]
fullname = os.path.join(dir, name)