summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/south/utils/datetime_utils.py
diff options
context:
space:
mode:
authorcoderick142017-05-17 15:40:18 +0530
committercoderick142017-05-17 15:41:00 +0530
commita1e0a5502f04da68b6a9ca8508dda3f9d7e1d055 (patch)
tree20181e6b1936f50ad48d8e35720d64a37566f558 /lib/python2.7/site-packages/south/utils/datetime_utils.py
parent6f4a84c1e58ff4d54aab94cbee26e995328b05b8 (diff)
downloadSBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.gz
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.bz2
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.zip
Upgrade to Django 1.11
- Database integration yet to be tested
Diffstat (limited to 'lib/python2.7/site-packages/south/utils/datetime_utils.py')
-rw-r--r--lib/python2.7/site-packages/south/utils/datetime_utils.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/python2.7/site-packages/south/utils/datetime_utils.py b/lib/python2.7/site-packages/south/utils/datetime_utils.py
deleted file mode 100644
index a416935..0000000
--- a/lib/python2.7/site-packages/south/utils/datetime_utils.py
+++ /dev/null
@@ -1,28 +0,0 @@
-from datetime import *
-
-import django
-from django.conf import settings
-
-if django.VERSION[:2] >= (1, 4) and getattr(settings, 'USE_TZ', False):
- from django.utils import timezone
- from datetime import datetime as _datetime
-
- class datetime(_datetime):
- """
- A custom datetime.datetime class which acts as a compatibility
- layer between South and Django 1.4's timezone aware datetime
- instances.
-
- It basically adds the default timezone (as configured in Django's
- settings) automatically if no tzinfo is given.
- """
- def __new__(cls, year, month, day,
- hour=0, minute=0, second=0, microsecond=0, tzinfo=None):
-
- dt = _datetime(year, month, day,
- hour, minute, second, microsecond,
- tzinfo=tzinfo)
- if tzinfo is None:
- default_timezone = timezone.get_default_timezone()
- dt = timezone.make_aware(dt, default_timezone)
- return dt