summaryrefslogtreecommitdiff
path: root/paste/lint.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2005-09-21 21:29:39 +0000
committerianb <devnull@localhost>2005-09-21 21:29:39 +0000
commitba3a575bee3a37ae5ecaa579d60b1e139383ed19 (patch)
treeff8ee535eccf43684d565d8953825ce708658301 /paste/lint.py
parent5a307da93ccb4aa05729598466a11aa2955db313 (diff)
downloadpaste-ba3a575bee3a37ae5ecaa579d60b1e139383ed19.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]')