From ee034649bbe5b2dde16821daa0a51e7ae0a215fc Mon Sep 17 00:00:00 2001 From: JohnE Date: Mon, 8 Jun 2015 15:54:28 -0700 Subject: [PATCH] WIP: JSON output --- libs/fingerprint.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/fingerprint.py b/libs/fingerprint.py index c84fc78..b8dcbef 100644 --- a/libs/fingerprint.py +++ b/libs/fingerprint.py @@ -60,7 +60,10 @@ class DBSchema: def writeFingerprint(self): - + keys = self.tables.keys() + for key in keys: + tableDef = self.tables[key] + tableDef.toJSON() return