summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Cross <tom.bz2@gmail.com>2020-01-26 09:29:54 -0600
committerChris Dent <cdent@anticdent.org>2020-01-26 15:29:54 +0000
commit221d33c102b83abc4657e9aafb135844d5215bdb (patch)
tree3abfc8b512f2d0a827943c508607c438efed1bd8
parentd3e74f876228c5b731b1338c98fc100f7b42036d (diff)
downloadpaste-git-221d33c102b83abc4657e9aafb135844d5215bdb.tar.gz
StringIO imports differently in python 3 - use six for compatibility (#46)
-rw-r--r--paste/cascade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/cascade.py b/paste/cascade.py
index 8207ae3..e1e8235 100644
--- a/paste/cascade.py
+++ b/paste/cascade.py
@@ -8,7 +8,7 @@ return ``404 Not Found``.
from paste import httpexceptions
from paste.util import converters
import tempfile
-from cStringIO import StringIO
+from six.moves import cStringIO as StringIO
__all__ = ['Cascade']