The unified diff between revisions [8e272dc5..] and [3940066f..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'Store.py'

#
#
# patch "Store.py"
#  from [494200b4a334e8b591e31f6d511b75a5c45e4a94]
#    to [362da0ea5ba5cd8d48105ca991f2f831b9f7a003]
#
============================================================
--- Store.py	494200b4a334e8b591e31f6d511b75a5c45e4a94
+++ Store.py	362da0ea5ba5cd8d48105ca991f2f831b9f7a003
@@ -47,6 +47,7 @@ class Store:

 	def check_schema(self):
 		for statement in create_fourstar_db.keys():
+			# FIXME move sql out
 			self.cursor.execute("select sql from sqlite_master where tbl_name=?;",(statement,))
 			sql = self.cursor.fetchone()
 			if not sql: