diff options
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/watch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/watch.py b/youtube/watch.py index 72268a7..ac70fd4 100644 --- a/youtube/watch.py +++ b/youtube/watch.py @@ -160,8 +160,8 @@ def extract_info(downloader, *args, **kwargs): def get_watch_page(): video_id = request.args['v'] if len(video_id) < 11: - abort(404) - abort(Response('Incomplete video id (too short): ' + video_id)) + flask.abort(404) + flask.abort(flask.Response('Incomplete video id (too short): ' + video_id)) lc = request.args.get('lc', '') if settings.route_tor: |