Alpha 1.0

This commit is contained in:
Justin Emter
2017-07-20 18:33:01 -07:00
parent 5b421574d9
commit 1450c0b94f
4 changed files with 43 additions and 17 deletions

View File

@@ -286,7 +286,11 @@ class PseudoChannelDatabase():
def get_daily_schedule(self):
return None
self.cursor.execute("SELECT * FROM daily_schedule ORDER BY datetime(startTime) ASC")
datalist = list(self.cursor.fetchall())
return datalist
def get_movie(self, title):