Skip to content

Commit

Permalink
Merge pull request #93 from internetarchive/fix-semgrep
Browse files Browse the repository at this point in the history
Fix syntax error in app.py
  • Loading branch information
cdrini authored Nov 26, 2024
2 parents 242a86e + 4d4e4ff commit e206c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iiify/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def documentation():

@app.route('/iiif/helper/<identifier>/')
def helper(identifier):
validate_ia_identifier(identifier, page_suffix=false)
validate_ia_identifier(identifier, page_suffix=False)

metadata = requests.get('%s/metadata/%s' % (ARCHIVE, identifier)).json()

Expand Down

0 comments on commit e206c9a

Please sign in to comment.