Log when we run without old portal data

This commit is contained in:
Tanner Collin 2020-01-23 07:25:53 +00:00
parent f29f8a9c75
commit 77e90e090f

View File

@ -9,8 +9,9 @@ from django.db.models import Sum
from . import models from . import models
try: try:
import old_models from . import old_models
except ModuleNotFoundError: except ModuleNotFoundError:
logging.info('Running without old portal data...')
old_models = None old_models = None
def num_months_spanned(d1, d2): def num_months_spanned(d1, d2):