diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-05-09 13:25:25 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-05-09 13:25:25 +0200 |
commit | 8cd29955e19d099d367896e714bc56103cd83d00 (patch) | |
tree | 63d8de224124ed4e3c8652faca6ea5150b58a7bc /archaeological_operations/import_from_csv.py | |
parent | a9eaaadd6bdd912f1610b83047fb4f457cac5cf6 (diff) | |
download | Ishtar-8cd29955e19d099d367896e714bc56103cd83d00.tar.bz2 Ishtar-8cd29955e19d099d367896e714bc56103cd83d00.zip |
Minor: remove debug
Diffstat (limited to 'archaeological_operations/import_from_csv.py')
-rw-r--r-- | archaeological_operations/import_from_csv.py | 1 |
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}) |