Skip to content

Commit

Permalink
Fixing syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbyt3r committed Jul 12, 2023
1 parent 3260060 commit efe8788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uber/tasks/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def send_automated_emails():
unapproved_count = 0

model_instances = query_func(session)
log.info("Evaluating " + str(len(model_instances)) " instances of " + model.__name__)
log.info("Evaluating " + str(len(model_instances)) + " instances of " + model.__name__)
for model_instance in model_instances:
if model_instance.id not in automated_email.emails_by_fk_id:
if automated_email.would_send_if_approved(model_instance):
Expand Down

0 comments on commit efe8788

Please sign in to comment.