fixed another _compat import

This commit is contained in:
mdipierro
2016-08-01 04:16:29 -05:00
parent eebf406d97
commit 92a03f397d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,8 +14,8 @@ Note:
"""
from os import stat
from ._compat import thread
from gluon.fileutils import read_file
from pydal._compat import thread
cfs = {} # for speed-up
cfs_lock = thread.allocate_lock() # and thread safety
+1 -1
View File
@@ -10,7 +10,7 @@ Cross-site scripting (XSS) defense
-----------------------------------
"""
from ._compat import HTMLParser, urlparse, entitydefs, basestring
from pydal._compat import HTMLParser, urlparse, entitydefs, basestring
from cgi import escape
from formatter import AbstractFormatter
from xml.sax.saxutils import quoteattr