found the bug. The error is in this function in cc_update.py
Code:
def update_collections_entry(self, coll_uuid, members):
self.commands.append(
{
"update":
{
"type": "Collection",
"uuid": str(coll_uuid),
"members": members
}
})
I need to change the update into an append now that I am breaking up the argument list for members. probably using something like this
https://stackoverflow.com/questions/...xt-row-sqlite3