Skip to content

Commit 71b1ce1

Browse files
renzonrenzon
authored andcommitted
Installed Django Extensions
close #1527
1 parent 30e1beb commit 71b1ce1

4 files changed

Lines changed: 78 additions & 68 deletions

File tree

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ newrelic = "*"
2525
pagarme-python = {editable = true,git = "https://github.com/renzon/pagarme-python.git",ref = "master"}
2626
sentry-sdk = "*"
2727
python-dateutil = "*"
28+
django-extensions = "*"
2829

2930
[dev-packages]
3031
faker = "*"

Pipfile.lock

Lines changed: 75 additions & 67 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pythonpro/payments/views.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,5 @@ def membership_anonymous_notification(request):
230230
request.headers['X-Hub-Signature'],
231231
request.GET.get('utm_source', default='unknown')
232232
)
233+
233234
return HttpResponse('')

pythonpro/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
PAGARME_CRYPTO_KEY = config('PAGARME_CRYPTO_KEY')
3939
PAGARME_API_KEY = config('PAGARME_API_KEY')
4040

41-
4241
PAGSEGURO_PAYMENT_PLAN = config('PAGSEGURO_PAYMENT_PLAN')
4342

4443
# Email Configuration
@@ -77,6 +76,7 @@
7776
'django.contrib.messages',
7877
'collectfast',
7978
'django.contrib.staticfiles',
79+
'django_extensions',
8080
]
8181

8282
MIDDLEWARE = [

0 commit comments

Comments
 (0)