ソースを参照

Correction d'un problème de print

master
TheBidouilleur 2週間前
コミット
8fb3137d77
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      update_manga.py

+ 1
- 1
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()



読み込み中…
キャンセル
保存