From 349d1a3c51aa34bc1a2f23080e745d645539b2b2 Mon Sep 17 00:00:00 2001 From: Michael Elsdoerfer Date: Fri, 26 Nov 2010 13:15:14 +0100 Subject: [PATCH] Now that the files lack a BOM, some need a coding declaration. --- django_tables/app/templatetags/tables.py | 1 + tests/test_templates.py | 1 + 2 files changed, 2 insertions(+) diff --git a/django_tables/app/templatetags/tables.py b/django_tables/app/templatetags/tables.py index ba1922e..f081ab4 100644 --- a/django_tables/app/templatetags/tables.py +++ b/django_tables/app/templatetags/tables.py @@ -1,3 +1,4 @@ +# coding: utf8 """ Allows setting/changing/removing of chosen url query string parameters, while maintaining any existing others. diff --git a/tests/test_templates.py b/tests/test_templates.py index a8b04a8..50f4dcb 100644 --- a/tests/test_templates.py +++ b/tests/test_templates.py @@ -1,3 +1,4 @@ +# coding: utf8 """Test template specific functionality. Make sure tables expose their functionality to templates right. This -- 2.26.2