dragon788 / amphetype

Automatically exported from code.google.com/p/amphetype
1 stars 0 forks source link

Missing 'editdist' module. #5

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Revision 18 is missing the editdist module and its distance function. 
Example traceback:

$ python Amphetype.py

Traceback (most recent call last):
  File "Amphetype.py", line 14, in <module>
    from Lesson import LessonGenerator
  File "Lesson.py", line 8, in <module>
    import editdist
ImportError: No module named editdist

By the way, when I supply my own version of this module, the program works
correctly on Linux.

Original issue reported on code.google.com by troy.mel...@gmail.com on 29 Dec 2008 at 1:31

GoogleCodeExporter commented 8 years ago
Fixed. Made a fake editdist that it imports if you don't have py-editdist. Wrote
about it in the readme.txt as an optional module.

Original comment by tristesse on 29 Dec 2008 at 4:05