瀏覽代碼

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



Loading…
取消
儲存