Commit 4ee9cdc7 by Tom Christie

Fix compat datetime import when oauth2 provide does not support timezone aware datetimes

parent 1f6a59d7
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
.* .*
html/ html/
htmlcov/
coverage/ coverage/
build/ build/
dist/ dist/
......
...@@ -494,7 +494,8 @@ try: ...@@ -494,7 +494,8 @@ try:
if provider_version in ('0.2.3', '0.2.4'): if provider_version in ('0.2.3', '0.2.4'):
# 0.2.3 and 0.2.4 are supported version that do not support # 0.2.3 and 0.2.4 are supported version that do not support
# timezone aware datetimes # timezone aware datetimes
from datetime.datetime import now as provider_now import datetime
provider_now = datetime.datetime.now
else: else:
# Any other supported version does use timezone aware datetimes # Any other supported version does use timezone aware datetimes
from django.utils.timezone import now as provider_now from django.utils.timezone import now as provider_now
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment