From ba3a575bee3a37ae5ecaa579d60b1e139383ed19 Mon Sep 17 00:00:00 2001 From: ianb Date: Wed, 21 Sep 2005 21:29:39 +0000 Subject: Fixes suggested by pyflakes --- paste/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'paste/lint.py') diff --git a/paste/lint.py b/paste/lint.py index dd80ecc..b3bee02 100644 --- a/paste/lint.py +++ b/paste/lint.py @@ -3,7 +3,7 @@ import re import sys -from types import * +from types import DictType, StringType, TupleType, ListType header_re = re.compile(r'^[a-zA-Z][a-zA-Z0-9\-_]*$') bad_header_value_re = re.compile(r'[\000-\037]') -- cgit v1.2.1