From 20e4a5e0b68cf56c0367ca9657bbe1fd03db7a78 Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 2 Jun 2016 19:22:35 -0700 Subject: [PATCH] additional db init check --- libs/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/database.py b/libs/database.py index c22d90f..fcc2568 100755 --- a/libs/database.py +++ b/libs/database.py @@ -14,7 +14,7 @@ class database: """INSERT INTO "streams" ("id","user","name","url","directory","status","message") VALUES (NULL,NULL,'WCMF Breakroom','http://1681.live.streamtheworld.com/WCMFFMAAC','wcmf-breakroom','0','')""", """INSERT INTO "times" ("id","streamid","su","m","t","w","r","f","sa","starthour","startmin","endhour","endmin") VALUES (NULL,'1','0','1','1','1','1','1','0','2','0','7','15')""" ] - if not os.path.exists("db.sqlite") or os.path.getsize("db.sqlite")==0: + if not os.path.exists("db.sqlite") or os.path.getsize("db.sqlite")==0: # TODO: query and see if the tables exist instead db = sqlite3.connect("db.sqlite", check_same_thread=False, cached_statements=0, isolation_level=None) cursor = db.cursor() for query in queries: