From e38625632c572030dad31128ee323ea8e1ad75a6 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Tue, 29 Nov 2016 16:03:58 +0000 Subject: [PATCH] Remove print --- app/notifications/validators.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/notifications/validators.py b/app/notifications/validators.py index 5631e9284..2be1e54f5 100644 --- a/app/notifications/validators.py +++ b/app/notifications/validators.py @@ -12,7 +12,6 @@ def check_service_message_limit(key_type, service): if key_type != KEY_TYPE_TEST: cache_key = redis.daily_limit_cache_key(service.id) service_stats = redis_store.get(cache_key) - print(service_stats) if not service_stats: service_stats = services_dao.fetch_todays_total_message_count(service.id) redis_store.set(cache_key, service_stats, ex=3600)