From 992a44be3668f7d9f97382628cc74825d6277529 Mon Sep 17 00:00:00 2001 From: purerosefallen <78877@qq.com> Date: Wed, 6 May 2020 21:13:24 +0800 Subject: [PATCH] typo --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index f79cd2a..bc43992 100644 --- a/app.py +++ b/app.py @@ -340,7 +340,7 @@ def route_admin_songs_id_delete(id): @app.cache.cached(timeout=15, query_string=True) def route_api_preview(): song_id = request.args.get('id', None) - if not song_id or not re.match('^[0-9]{1,9}}$', song_id): + if not song_id or not re.match('^[0-9]{1,9}$', song_id): abort(400) song_id = int(song_id)