소스 검색

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



불러오는 중...
취소
저장