summaryrefslogtreecommitdiff
path: root/morphlib/morphloader.py
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-08-08 15:42:03 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-08-14 13:24:50 +0000
commita8bb16bf3a9a7f5b99c5a02136e6e970d373468b (patch)
tree895a7f14cc4c6ff870cc8d5f628fa0a0266a3f65 /morphlib/morphloader.py
parent70f7ab6be68eef9a1f460c9a9918c0e4dd59efc5 (diff)
downloadmorph-a8bb16bf3a9a7f5b99c5a02136e6e970d373468b.tar.gz
Instead of leaving morph3 with a potentially confusing name, rename it to `morphology` since it is now the only implementation of the Morphology class.
Diffstat (limited to 'morphlib/morphloader.py')
-rw-r--r--morphlib/morphloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/morphloader.py b/morphlib/morphloader.py
index d06c06dc..05dcb62c 100644
--- a/morphlib/morphloader.py
+++ b/morphlib/morphloader.py
@@ -394,7 +394,7 @@ class MorphologyLoader(object):
if not isinstance(obj, dict):
raise NotADictionaryError(morph_filename)
- return morphlib.morph3.Morphology(obj)
+ return morphlib.morphology.Morphology(obj)
def load_from_string(self, string, filename='string'):
'''Load a morphology from a string.