mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 03:13:06 +00:00
Added missing import
This commit is contained in:
parent
201d96bb52
commit
75259851a9
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.conf import settings
|
||||
from django.shortcuts import render_to_response
|
||||
from django.shortcuts import render_to_response, redirect
|
||||
from django.template import RequestContext
|
||||
from django.views.decorators.csrf import csrf_exempt
|
||||
|
||||
|
@ -283,7 +283,7 @@ def stripe_donation(request):
|
|||
description='PokeAPI donation'
|
||||
)
|
||||
except:
|
||||
pass
|
||||
return redirect('/')
|
||||
|
||||
return redirect('/')
|
||||
return redirect('/')
|
||||
|
|
Loading…
Reference in a new issue