diff options
Diffstat (limited to 'archaeological_operations/data_importer.py')
-rw-r--r-- | archaeological_operations/data_importer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_operations/data_importer.py b/archaeological_operations/data_importer.py index 9cbdca05c..a5d44dd53 100644 --- a/archaeological_operations/data_importer.py +++ b/archaeological_operations/data_importer.py @@ -72,14 +72,14 @@ class TownFormater(Formater): for town in Town.objects.all(): key = (slugify(town.name.strip()), town.numero_insee[:2]) if key in self._town_full_dct: - print("Danger! %s is ambiguous with another town on the same " - "department." % town.name) + # print("Danger! %s is ambiguous with another town on the same" + # " department." % town.name) continue self._town_full_dct[key] = town key = slugify(town.name.strip()) if key in self._town_dct: - print("Warning %s is ambiguous with no department provided" % - town.name) + # print("Warning %s is ambiguous with no department provided" % + # town.name) continue self._town_dct[key] = town self._initialized = True |