From 8a6aa4b41537cb11c6126af9f17c4e44b6fb32ce Mon Sep 17 00:00:00 2001
From: pcain-usgs <pcain@usgs.gov>
Date: Tue, 2 Jul 2019 13:20:01 -0600
Subject: [PATCH] Fixes issue 237

Fixes issue with unnecessarry warning message
---
 geomagio/algorithm/SqDistAlgorithm.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/geomagio/algorithm/SqDistAlgorithm.py b/geomagio/algorithm/SqDistAlgorithm.py
index a3a97e08a..c930b118e 100644
--- a/geomagio/algorithm/SqDistAlgorithm.py
+++ b/geomagio/algorithm/SqDistAlgorithm.py
@@ -82,8 +82,6 @@ class SqDistAlgorithm(Algorithm):
             # state is up to date, only need new data
             return (start, end)
         # state not up to date, need to prime
-        print('WARNING: missing or incompatible state...' +
-              'reinitializing.', file=sys.stderr)
         return (start - 3 * 30 * 24 * 60 * 60, end)
 
     def get_next_starttime(self):
-- 
GitLab