This commit is contained in:
Maciej Ścigacz 2023-05-31 20:20:15 +02:00
parent 53051b52f7
commit 385fda78d4

View File

@ -28,5 +28,5 @@ def scrapp():
result = scrapp_comments(url['link'])
result['status'] = True
return result
except:
return jsonify({'status':False})
except Exception as err:
return jsonify({'status':False, 'error':str(err)})