4 lines
73 B
Python
4 lines
73 B
Python
|
def handle_server_error(e):
|
||
|
print(e)
|
||
|
return {'error': True}, 500
|