summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@monkeypox.org>2009-12-26 22:15:53 -0800
committerR. Tyler Ballance <tyler@monkeypox.org>2009-12-27 16:00:42 -0800
commitfda0a433c6b2e1ad6365f09d0a875a1cd4489507 (patch)
treeea31241c0131dc3863415188d7375df3cdf1eebc
parent82338d99612c4937e032c4389b2b3a4a524a268e (diff)
downloadpython-cheetah-fda0a433c6b2e1ad6365f09d0a875a1cd4489507.tar.gz
Prune reference to 'basestring' inside of run_setup()
-rw-r--r--SetupTools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/SetupTools.py b/SetupTools.py
index 39d104a..8fb6fe5 100644
--- a/SetupTools.py
+++ b/SetupTools.py
@@ -140,7 +140,7 @@ def run_setup(configurations):
for name, value in kws.items():
if name[:1] == '_':
continue
- if not isinstance(value, (basestring, list, tuple, dict, int)):
+ if not isinstance(value, (str, list, tuple, dict, int)):
continue
newkws[name] = value
kws = newkws