Simple fixes
This commit is contained in:
parent
f470fc5ece
commit
46abefd447
@ -21,7 +21,7 @@ out.write('''<!DOCTYPE html>
|
||||
<style type="text/css">body{margin:40px auto;max-width:740px;line-height:1.6;color:#444;padding:0 10px}h1,h2,h3{line-height:1.2;font-size:18px;}li{font-size:12px;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<a href="{}">Source Database</a><br/><br/>'''.format(vvvvidb))
|
||||
<a href="''' + vvvvidb + '''">Source Database</a><br/><br/>''')
|
||||
|
||||
# select all the series
|
||||
# cur.execute("SELECT * FROM series;")
|
||||
|
22
vvvvget.py
22
vvvvget.py
@ -103,17 +103,17 @@ if not os.path.isfile(vvvvidb):
|
||||
cur.execute("CREATE TABLE episodes (serie_id INTEGER, season_id INTEGER, cdn_url TEXT NOT NULL, type TEXT NOT NULL);")
|
||||
con.commit()
|
||||
con.close()
|
||||
#else:
|
||||
# con = sqlite3.connect(vvvvidb)
|
||||
# cur = con.cursor()
|
||||
# cur.execute("SELECT id FROM series ORDER BY id DESC LIMIT 1;")
|
||||
# rows = cur.fetchall()
|
||||
# if len(rows) > 0:
|
||||
# last = rows[0][0] + 1
|
||||
# con.commit()
|
||||
# con.close()
|
||||
#
|
||||
#print("Resuming from...{}".format(last))
|
||||
else:
|
||||
con = sqlite3.connect(vvvvidb)
|
||||
cur = con.cursor()
|
||||
cur.execute("SELECT id FROM series ORDER BY id DESC LIMIT 1;")
|
||||
rows = cur.fetchall()
|
||||
if len(rows) > 0:
|
||||
last = rows[0][0] + 1
|
||||
con.commit()
|
||||
con.close()
|
||||
|
||||
print("Resuming from...{}".format(last))
|
||||
|
||||
con = sqlite3.connect(vvvvidb)
|
||||
cur = con.cursor()
|
||||
|
Loading…
Reference in New Issue
Block a user