Преглед изворни кода

일부 파일 이름 변경

Surplus_Up (2DU) пре 6 година
родитељ
комит
3ad27be94b
3 измењених фајлова са 3 додато и 3 уклоњено
  1. 2 2
      route/tool/mark.py
  2. 1 1
      route/tool/set_mark/namumark.py
  3. 0 0
      route/tool/set_mark/namumark_backlink.py

+ 2 - 2
route/tool/mark.py

@@ -1,4 +1,4 @@
-from .set_mark.namu import namu
+from .set_mark.namumark import namumark
 from .set_mark.markdown import markdown
 
 from .set_mark.tool import *
@@ -46,7 +46,7 @@ def namumark(title, data, num, include):
     curs.execute(db_change('select data from other where name = "markup"'))
     rep_data = curs.fetchall()
     if rep_data[0][0] == 'namumark':
-        data = namu(conn, data, title, num, include)
+        data = namumark(conn, data, title, num, include)
     elif rep_data[0][0] == 'markdown':
         data = markdown(conn, data, title, num)
     elif rep_data[0][0] == 'raw':

+ 1 - 1
route/tool/set_mark/namu.py → route/tool/set_mark/namumark.py

@@ -426,7 +426,7 @@ def middle_parser(data, fol_num, syntax_num, folding_num, include_num):
 
     return [data, [fol_num, syntax_num, folding_num]]
 
-def namu(conn, data, title, main_num, include_num):
+def namumark(conn, data, title, main_num, include_num):
     curs = conn.cursor()
 
     global plus_data

+ 0 - 0
route/tool/set_mark/namumark_backlink.py