1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Unsorted GeoValue.values can result in false diffs

This commit is contained in:
Ross McFarland
2018-03-15 06:22:40 -07:00
parent 87f8e0503b
commit 29b6f5a886

View File

@@ -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):