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:28:50 +0000
commit5f705f1e2c95b988ae39df7820f4034c49f375e4 (patch)
treed2a4edf71f2c7204808e4543f3d743a81e95a1bd /morphlib/morphloader.py
parent43fb9e05c2a22c01c2d432af9500b531106eda8d (diff)
downloadmorph-5f705f1e2c95b988ae39df7820f4034c49f375e4.tar.gz
Rename morph3 to morphology
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.