Description: Ensure it works with packages available in Debian/Squeeze
  Changes to ensure Django 1.2 support and Python 2.6 support works.
Author: Brian May <bam@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- django-tables-0.10.2.orig/django_tables2/__init__.py
+++ django-tables-0.10.2/django_tables2/__init__.py
@@ -3,4 +3,3 @@ from .tables import Table
 from .columns import Column, CheckBoxColumn, LinkColumn, TemplateColumn
 from .config import RequestConfig
 from .utils import A, Attrs
-from .views import SingleTableMixin, SingleTableView
--- django-tables-0.10.2.orig/django_tables2/columns.py
+++ django-tables-0.10.2/django_tables2/columns.py
@@ -86,7 +86,7 @@ class Column(object):
             if orderable is None:
                 orderable = sortable
         self.orderable = orderable
-        attrs = attrs or {}
+        attrs = attrs or Attrs()
         if not isinstance(attrs, Attrs):
             warnings.warn('attrs must be Attrs object, not %s'
                           % type(attrs).__name__, DeprecationWarning)
