summaryrefslogtreecommitdiff
path: root/archaeological_operations/data_importer.py
diff options
context:
space:
mode:
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
commit1d8fe9c939d3436e77a8b60007dd2f2d0d475981 (patch)
treedc7b8e0f606855a653b87703fb31c81645992cf4 /archaeological_operations/data_importer.py
parent42116f233489b878a512295adb86b5556e7257f2 (diff)
downloadIshtar-1d8fe9c939d3436e77a8b60007dd2f2d0d475981.tar.bz2
Ishtar-1d8fe9c939d3436e77a8b60007dd2f2d0d475981.zip
Imports SRA: fix regex
Diffstat (limited to 'archaeological_operations/data_importer.py')
-rw-r--r--archaeological_operations/data_importer.py2
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):