diff --git a/update_manga.py b/update_manga.py index 48e7216..66feb41 100644 --- a/update_manga.py +++ b/update_manga.py @@ -27,7 +27,7 @@ def update_manga(id): if int(last_chapt) == int(new_chapt) : print("Nous sommes a jour") else : - print("Pas a jour ! Le dernier chapitre est %s " % ) + print("Pas a jour ! Le dernier chapitre est %s " % new_chapt) cursor.execute("UPDATE manga SET chap = '{}' WHERE id = '{}'".format(get_last_chap(url), get_id(url))) conn.commit()