From 967f1e3b85ac239d6ae9900a62304392682131a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 14 Aug 2007 09:23:10 +0000 Subject: Remove string.{letters,lowercase,uppercase}. --- Tools/scripts/texi2html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools/scripts/texi2html.py') diff --git a/Tools/scripts/texi2html.py b/Tools/scripts/texi2html.py index e5e292d20d..37d6e9168c 100755 --- a/Tools/scripts/texi2html.py +++ b/Tools/scripts/texi2html.py @@ -2000,7 +2000,7 @@ def fixfunnychars(addr): def increment(s): if not s: return '1' - for sequence in string.digits, string.lowercase, string.uppercase: + for sequence in string.digits, string.ascii_lowercase, string.ascii_uppercase: lastc = s[-1] if lastc in sequence: i = sequence.index(lastc) + 1 -- cgit v1.2.1