Removing unnecesary print

remotes/origin/enhancement/email-actions
Alejandro Alonso 2014-10-28 22:07:17 +01:00
parent 08b8d478e1
commit fac330246b
1 changed files with 1 additions and 2 deletions

View File

@ -222,7 +222,6 @@ def send_sync_notifications(notification_id):
now = timezone.now()
time_diff = now - notification.updated_datetime
if time_diff.seconds < settings.CHANGE_NOTIFICATIONS_MIN_INTERVAL:
print(time_diff.seconds)
return
history_entries = tuple(notification.history_entries.all().order_by("created_at"))