Skip to content

Commit

Permalink
suporte ao django 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edussilva committed Aug 16, 2018
1 parent 32a2da1 commit 66ad317
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pagseguro/tests/test_signals_pre_approval.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

import responses
from django.test import TestCase
from django.core.urlresolvers import reverse
try:
from django.urls import reverse
except ImportError:
from django.core.urlresolvers import reverse
from django.utils import timezone
from dateutil.parser import parse
from mock import patch
Expand Down

0 comments on commit 66ad317

Please sign in to comment.