From 29b6f5a88682c43b63467e2a7b894acf2844083c Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 15 Mar 2018 06:22:40 -0700 Subject: [PATCH] Unsorted GeoValue.values can result in false diffs --- octodns/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octodns/record.py b/octodns/record.py index 6d1e25b..0ae1335 100644 --- a/octodns/record.py +++ b/octodns/record.py @@ -184,7 +184,7 @@ class GeoValue(object): self.continent_code = match.group('continent_code') self.country_code = match.group('country_code') self.subdivision_code = match.group('subdivision_code') - self.values = values + self.values = sorted(values) @property def parents(self):