summaryrefslogtreecommitdiff
path: root/paste/lint.py
diff options
context:
space:
mode:
authorIan Bicking <ian@ianbicking.org>2005-09-21 21:29:39 +0000
committerIan Bicking <ian@ianbicking.org>2005-09-21 21:29:39 +0000
commit218f451580e4d27394f7196667bee62c24954c36 (patch)
treeff8ee535eccf43684d565d8953825ce708658301 /paste/lint.py
parent78ee41a192c2d16ac4b0d9eae675c7fbb6922d01 (diff)
downloadpaste-git-218f451580e4d27394f7196667bee62c24954c36.tar.gz
Fixes suggested by pyflakes
Diffstat (limited to 'paste/lint.py')
-rw-r--r--paste/lint.py2
1 files changed, 1 insertions, 1 deletions
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]')