fix filenames generation

This commit is contained in:
n 2022-02-20 14:36:24 +01:00 committed by Gitea
parent 3770a9ea84
commit 07cc34877b
1 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ mydb = mysql.connector.connect(
mycursor = mydb.cursor()
mycursor.execute("SELECT post_url, post_title, post_content_xhtml FROM dc_post WHERE post_url LIKE '%/%/%/%' ORDER BY post_id DESC")
myresult = mycursor.fetchall()
mydb.close()
f = open("index.gmi", "w")
f.write("# Tourmentine's blog-to-gemlog\n\n");
@ -42,7 +43,7 @@ for x in myresult:
filename = filename_regex.findall(x[0])[0]
f = open("index.gmi", "a")
f.write("=> %s/%s.gmi %s - %s\n" % (path, filename, path.replace("/","-"), x[1]))
f.write("=> %s/%s.gmi %s - %s\n" % (path, quote(quote(filename)), path.replace("/","-"), x[1]))
f.close()
try: