diff --git a/uploadr.py b/uploadr.py index 19928d8..f9deaab 100644 --- a/uploadr.py +++ b/uploadr.py @@ -12,10 +12,6 @@ app = Flask(__name__) app.config['SECRET_KEY'] = os.urandom(24) @app.route("/") -@app.route("/hello/") -def hello(name=None): - return render_template('hello.html',name=name) - @app.route('/upload', methods=['GET','POST']) def upload_file(): if request.method == 'POST':