summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-18 16:51:45 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-18 16:51:45 +0000
commit7aef49ca7a7888a42ba7bef97a681912cf01e4f2 (patch)
tree432f33e1d36bb784346dfe5230000cac02ae54e6
parentedd18a77973d8cd12b09bc6e3ac06fecd72a7e45 (diff)
downloadimport-7aef49ca7a7888a42ba7bef97a681912cf01e4f2.tar.gz
Fix error in stratum generation
This was caused by a mistake in: commit c8e156fe181c8e62fda9f9a999af1f0a0980a0ce Author: Sam Thursfield <sam.thursfield@codethink.co.uk> Date: Mon Nov 17 17:20:00 2014 +0000 Don't force the generated stratum through morphloader validation We should be able to trust it, since we literally just generated it.
-rw-r--r--baserockimport/mainloop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/baserockimport/mainloop.py b/baserockimport/mainloop.py
index 99fb8d2..ccb695d 100644
--- a/baserockimport/mainloop.py
+++ b/baserockimport/mainloop.py
@@ -571,6 +571,6 @@ class ImportLoop(object):
'chunks': chunk_entries,
}
- morphology = self.morphology.Morphology(stratum)
+ morphology = morphlib.morphology.Morphology(stratum)
morphology.filename = filename
self.morphloader.save_to_file(filename, morphology)