# HG changeset patch # User Arnaud Bergeron # Date 1269629855 14400 # Node ID 568066b9c5a311e0e30d0981ec72ec61fb817c0d # Parent 3476044d73269f0cc795380ac436c550d1b0d2cd NoteImplementedError -> NotImplementedError diff -r 3476044d7326 -r 568066b9c5a3 pylearn/version.py --- a/pylearn/version.py Mon Mar 22 09:55:12 2010 -0400 +++ b/pylearn/version.py Fri Mar 26 14:57:35 2010 -0400 @@ -227,15 +227,15 @@ if resource_type == _imp.PY_COMPILED: return _import_id_py_compiled(location) if resource_type == _imp.C_EXTENSION: - raise NoteImplementedError + raise NotImplementedError if resource_type == _imp.PY_RESOURCE: - raise NoteImplementedError + raise NotImplementedError if resource_type == _imp.PKG_DIRECTORY: return _import_id_pkg_directory(location) if resource_type == _imp.C_BUILTIN: - raise NoteImplementedError + raise NotImplementedError if resource_type == _imp.PY_FROZEN: - raise NoteImplementedError + raise NotImplementedError assert False #the list of resource types above should be exhaustive