summaryrefslogtreecommitdiff
path: root/paste/exceptions/formatter.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/exceptions/formatter.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/exceptions/formatter.py')
-rw-r--r--paste/exceptions/formatter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/exceptions/formatter.py b/paste/exceptions/formatter.py
index 3be07ef..3ff7e6c 100644
--- a/paste/exceptions/formatter.py
+++ b/paste/exceptions/formatter.py
@@ -7,9 +7,9 @@ Formatters for the exception data that comes from ExceptionCollector.
# @@: TODO:
# Use this: http://www.zope.org/Members/tino/VisualTraceback/VisualTracebackNews
-import html
import six
import re
+from paste.util import html
from paste.util import PySourceColor
def html_quote(s):