소스 검색

버그 패치

2DU 8 년 전
부모
커밋
3780cbc7b3
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      back_reset.py

+ 2 - 1
back_reset.py

@@ -2,6 +2,7 @@ import json
 import sqlite3
 from multiprocessing import Process
 from func import *
+from set_mark.mark import *
 
 json_data = open('set.json').read()
 set_data = json.loads(json_data)
@@ -12,7 +13,7 @@ curs = conn.cursor()
 def go_namu(data):
     for end in data:
         print(end[0])
-        namumark(end[0], end[1], 1, 0, 0)
+        namumark(conn, end[0], end[1], 1, 0, 0)
 
 if(__name__=='__main__'):
     curs.execute("select title, data from data")