From 571dc55456bf67bae733070292039231b831d522 Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Fri, 28 Aug 2015 12:10:30 -0300 Subject: [PATCH] Fix typos --- sapl/settings.py | 1 - sapl/test_general.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sapl/settings.py b/sapl/settings.py index bb30ea750..9ed9b7149 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -24,7 +24,6 @@ SECRET_KEY = '!9g1-#la+#(oft(v-y1qhy$jk-2$24pdk69#b_jfqyv!*%a_)t' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -TEMPLATE_DEBUG = DEBUG ALLOWED_HOSTS = ['*'] diff --git a/sapl/test_general.py b/sapl/test_general.py index 92e1f8c22..35587f3c9 100644 --- a/sapl/test_general.py +++ b/sapl/test_general.py @@ -15,6 +15,6 @@ def test_str_sanity(): try: str(obj) except Exception as exc: - msg = '%s.%s.__str__ has is broken.' % ( + msg = '%s.%s.__str__ is broken.' % ( model.__module__, model.__name__) raise AssertionError(msg, exc) from exc