mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 10:10:01 -03:30
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
|