Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTim McMacken
11,910 PointsTask 3 of flash() message in fishy() getting syntax error for line 1
The error I am getting is: syntax error: line 1, column 54 but I am not seeing where the syntax issue is. I tried breaking the import statement in to multiple lines thinking maybe it was a pep8 issue but that did not work.
from flask import Flask, redirect, url_for, render_template, flash
app = Flask(__name__)
app.secret_key="jhfiajf9aufkonas089fuarh14-ahi9-sufq"
@app.route('/')
def index():
key = secret_key
return render_template("index.html")
@app.route('/fishy')
def fishy():
flash("Trying to get all my ducks in a row")
return redirect(url_for('index'))
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey Tim McMacken, the line key = secret_key
is causing the error. The challenge does not need it. You may either:
- delete the line, or
- fix the syntax error by referencing
app.secret_key
Post back if you need more help. Good luck!!!
Tim McMacken
11,910 PointsThank you Chris that was it!
Tim McMacken
11,910 PointsTim McMacken
11,910 PointsYeah even when there is not a column 54 on line one I am still getting : Bummer: syntax error: line 1, column 54
Any idea where I went wrong?