From 83df3c293a9f6466e93e645e1c7029305641170d Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sun, 7 Jul 2013 16:08:47 +0200 Subject: [PATCH] fixed sorting again --- openlp/plugins/songs/lib/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py index 015caa87d..010aabc75 100644 --- a/openlp/plugins/songs/lib/db.py +++ b/openlp/plugins/songs/lib/db.py @@ -68,7 +68,7 @@ class Song(BaseModel): Song model """ def __init__(self): - self.sort_key = () + self.sort_key = [] @reconstructor def init_on_load(self):