summaryrefslogtreecommitdiff
path: root/paste/urlmap.py
diff options
context:
space:
mode:
authorChris Dent <cdent@anticdent.org>2018-10-24 22:46:20 +0100
committerChris Dent <cdent@anticdent.org>2018-10-24 22:46:20 +0100
commit00f4fde04bdd841ec88c2b62dd9dcab92a3d019d (patch)
treedbd1466a951c44cb7f5f94847d8b1dbde024b89c /paste/urlmap.py
parent9ceef07267ba83ea5c00533f85f9edf9ba38cd71 (diff)
downloadpaste-git-00f4fde04bdd841ec88c2b62dd9dcab92a3d019d.tar.gz
Remove use of future
Future is calling installation endless recursion. We are only using it for an html.escape method, so we make our own and get rid of future. Related-Bug: #6
Diffstat (limited to 'paste/urlmap.py')
-rw-r--r--paste/urlmap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/urlmap.py b/paste/urlmap.py
index 4ba19c1..3de23db 100644
--- a/paste/urlmap.py
+++ b/paste/urlmap.py
@@ -6,7 +6,7 @@ Map URL prefixes to WSGI applications. See ``URLMap``
import re
import os
-import html
+from paste.util import html
try:
# Python 3
from collections import MutableMapping as DictMixin