Browse Source

Remove useless f-string

master
Marien Fressinaud 5 years ago
parent
commit
a62e172f26
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      boop.py

+ 1
- 1
boop.py View File

@@ -147,7 +147,7 @@ def generate_gallery(output_path, gallery):


def generate_gallery_index(output_path, gallery):
gallery_index_path = os.path.join(output_path, f"{gallery['url']}")
gallery_index_path = os.path.join(output_path, gallery["url"])

theme_path = os.path.join(os.curdir, THEME)
jinja_env = Environment(

Loading…
Cancel
Save