move error fixing

This commit is contained in:
2013-07-06 21:59:33 +10:00
parent 4a5cc6d0c6
commit a10bed2ddb
5 changed files with 18 additions and 10 deletions

View File

@@ -15,7 +15,7 @@ def RetrieveEpisodeData(serverAddress, user, password, database, inputFile):
cur = con.cursor(mdb.cursors.DictCursor)
cur.execute("select episode, season, title, subtitle, description from mythconverg.recorded where basename = '{0}'".format(inputFile))
result = cur.fetchone()
print result
#print result
return TVShow(result['episode'], result['season'], result['title'], result['subtitle'], result['description'])