Browse Source

Remove useless f-string

master
Marien Fressinaud 6 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





def generate_gallery_index(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) theme_path = os.path.join(os.curdir, THEME)
jinja_env = Environment( jinja_env = Environment(

Loading…
Cancel
Save