From d7cd5598ece679ea6472785f5bfa430d5a16af46 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 8 May 2011 15:50:18 +0000 Subject: [PATCH] Swap parent classes because Python 2.7 can't find proper methods in subclass svn: r17459 --- src/web/dbdjango.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/dbdjango.py b/src/web/dbdjango.py index b0de2542d..8e8504911 100644 --- a/src/web/dbdjango.py +++ b/src/web/dbdjango.py @@ -98,7 +98,7 @@ class Cursor(object): yield (item.handle, self.func(item)) yield None -class DbDjango(DbReadBase, DbWriteBase): +class DbDjango(DbWriteBase, DbReadBase): """ A Gramps Database Backend. This replicates the grampsdb functions. """