mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-02 12:51:48 -05:00
9 lines
179 B
Python
9 lines
179 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
|
|
import datetime
|
|
try:
|
|
from django.utils.timezone import now
|
|
except ImportError:
|
|
now = datetime.datetime.now
|