summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archaeological_operations/import_from_csv.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/archaeological_operations/import_from_csv.py b/archaeological_operations/import_from_csv.py
index d00327cef..9d7a57734 100644
--- a/archaeological_operations/import_from_csv.py
+++ b/archaeological_operations/import_from_csv.py
@@ -430,7 +430,6 @@ def parse_parcels(parcel_str, insee_code, owner):
parcel_str = parcel_str[m.span()[1]:]
for parcel in PARCEL_SECTION_REGEXP.findall(parcel_str):
sector, nums = parcel[0], parcel[1]
- print PARCEL_NB_REGEXP.findall(nums)
for num in PARCEL_NB_REGEXP.findall(nums):
parcels.append({'year':year, 'town':town, 'section':sector,
'parcel_number':num, 'history_modifier':owner})