summaryrefslogtreecommitdiff
path: root/archaeological_operations/management/commands/import_operations.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/management/commands/import_operations.py')
-rw-r--r--archaeological_operations/management/commands/import_operations.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/archaeological_operations/management/commands/import_operations.py b/archaeological_operations/management/commands/import_operations.py
index 92b9cc4b2..de64931a0 100644
--- a/archaeological_operations/management/commands/import_operations.py
+++ b/archaeological_operations/management/commands/import_operations.py
@@ -36,6 +36,14 @@ try:
except ImportError:
pass
+try:
+ from archaeological_finds.data_importer import *
+ IMPORTERS['bibracte-finds'] = FindsImporterBibracte
+ IMPORTERS['bibracte-finds-alt'] = FindAltImporterBibracte
+ IMPORTERS['bibracte-treatments'] = TreatmentImporterBibracte
+except ImportError:
+ pass
+
class Command(BaseCommand):
args = '<filename> <importer_name> [<nb lines skipped>]'
help = "Import archaeological operations"