From 50612bbc023b2071dda1045db2a3c6b475e03af6 Mon Sep 17 00:00:00 2001 From: Joe Steele Date: Tue, 25 Jun 2024 18:11:52 -0400 Subject: [PATCH] fix dimensions of xls sheet --- social.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social.py b/social.py index 5591a94..862f785 100644 --- a/social.py +++ b/social.py @@ -675,7 +675,7 @@ def write_to_database(data, local_outputs): column_list=[] print('write to database ...') for x in inspect.getmembers(Posts): - if not (x[0].startswith('_') or 'metadata' in x[0]): + if not (x[0].startswith('_') or 'metadata' in x[0] or 'registry' in x[0]): column_list.append(x[0]) cols = ["name", "comment", 'rating','picsURL','picsLocalpath','source','date','address', 'dictPostComplete','visitdate']