From 2dfb8900cd3fbb2ba44c4de5739d08021dfb0d42 Mon Sep 17 00:00:00 2001 From: Ru Uba Date: Sat, 28 May 2022 06:27:50 -0400 Subject: [PATCH] Spelling Update Not really consequential to getting this file to run --- samples/Backend with Python (Flask).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/Backend with Python (Flask).md b/samples/Backend with Python (Flask).md index 422f528b..43f4d943 100644 --- a/samples/Backend with Python (Flask).md +++ b/samples/Backend with Python (Flask).md @@ -19,7 +19,7 @@ def resumable_example(): # NOTE: your validation here needs to match whatever you do in the POST (otherwise it will NEVER find the files) @app.route("/resumable_upload", methods=['GET']) def resumable(): - resumableIdentfier = request.args.get('resumableIdentifier', type=str) + resumableIdentifier = request.args.get('resumableIdentifier', type=str) resumableFilename = request.args.get('resumableFilename', type=str) resumableChunkNumber = request.args.get('resumableChunkNumber', type=int)