From 9aac40bfc43fa2acfbab1424dc66b4278c9e63e4 Mon Sep 17 00:00:00 2001 From: OzzieIsaacs Date: Wed, 3 Aug 2016 13:14:24 +0200 Subject: [PATCH] Fix #20 Series and custom composite coloums are also excluded in the view --- cps/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/db.py b/cps/db.py index 2cebe7bf..ddc7805c 100755 --- a/cps/db.py +++ b/cps/db.py @@ -52,7 +52,7 @@ books_languages_link = Table('books_languages_link', Base.metadata, cc = conn.execute("SELECT id, datatype FROM custom_columns") cc_ids = [] -cc_exceptions = ['bool', 'datetime', 'int', 'comments', 'float', ] +cc_exceptions = ['bool', 'datetime', 'int', 'comments', 'float', 'composite','series' ] books_custom_column_links = {} for row in cc: if row.datatype not in cc_exceptions: