def add_image_to_show(album, filename): """Add an image to the show""" show = Show(album, current_app.config, session) try: show.add_image(filename).save() except: return jsonify(result="Failed") return jsonify(result="OK")
def add_image_to_show(album, filename): """Add an image to the show""" show = Show(album, current_app.config, session) try: show.add_image(filename).save() except: return jsonify(result='Failed') return jsonify(result='OK')
def add_image_to_show(album, filename): """Add an image to the show""" show = Show(album) if show.add_image(filename): return jsonify(result='OK') return jsonify(result='Failed')