diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-10-24 14:28:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-10-24 14:28:12 +0200 |
commit | ae6364b1992d385e2bcb89f58e69ef4e9f28d97c (patch) | |
tree | dc7b8e0f606855a653b87703fb31c81645992cf4 /archaeological_operations | |
parent | ab66e177c787f4982790b20079e0d00d78829058 (diff) | |
download | Ishtar-ae6364b1992d385e2bcb89f58e69ef4e9f28d97c.tar.bz2 Ishtar-ae6364b1992d385e2bcb89f58e69ef4e9f28d97c.zip |
Imports SRA: fix regex
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/data_importer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/data_importer.py b/archaeological_operations/data_importer.py index 6c89ebaa5..b4cd2f0d0 100644 --- a/archaeological_operations/data_importer.py +++ b/archaeological_operations/data_importer.py @@ -156,7 +156,7 @@ RE_ADD_CD_POSTAL_TOWN = re.compile("(.+)?[, ]*(\d{2} *\d{3})[, ]*(.+)") RE_CD_POSTAL_FILTER = re.compile("(\d*) (\d*)") -RE_ORGA = re.compile("([^,]*)") +RE_ORGA = re.compile("([^,\n]*)") class OperationImporterBibracte(Importer): |