Compare commits

...

1 Commits

Author SHA1 Message Date
n c28e50a103
fix url encoding in index 2023-01-22 23:46:08 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,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: