10 lines
199 B
Python
10 lines
199 B
Python
"""Webapp utils."""
|
|
|
|
from django.utils import timezone
|
|
from datetime import timedelta
|
|
|
|
|
|
def month_from_now():
|
|
"""Return date one month from now."""
|
|
return timezone.now() + timedelta(days=30)
|