remove line print

This commit is contained in:
2026-09-03 03:46:47 +02:00
parent b11947bb7e
commit cb713f5bf7

View File

@@ -38,7 +38,6 @@ def new_article():
if request.method == 'POST':
tmp = re.sub(r'[^a-zA-Z0-9 ]', '', request.form['title'].rstrip())
title_id = tmp.replace(' ', '-')
print("---------title_id : " + title_id)
title = request.form['title'].rstrip()
subtitle = request.form['subtitle']
category = request.form['category']