From f95014f2f4ec8024c38215825e585add0f7e1fa8 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 12 Dec 2018 11:11:53 -0800 Subject: [PATCH] Don't deprecate geo bits yet, wait until we have full dynamic impl --- octodns/record/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/octodns/record/__init__.py b/octodns/record/__init__.py index ba5877f..b45924e 100644 --- a/octodns/record/__init__.py +++ b/octodns/record/__init__.py @@ -322,8 +322,6 @@ class _GeoMixin(_ValuesMixin): super(_GeoMixin, self).__init__(zone, name, data, *args, **kwargs) try: self.geo = dict(data['geo']) - self.log.warn("'geo' support has been deprecated, " - "transition %s to use 'dynamic'", name) except KeyError: self.geo = {} for code, values in self.geo.items():