acowley / ffmpeg-light

Minimal Haskell bindings to the FFmpeg library
BSD 3-Clause "New" or "Revised" License
67 stars 29 forks source link

use of deprecated Control.Monad.Error #31

Closed AleXoundOS closed 8 years ago

AleXoundOS commented 8 years ago

In fact ffmpeg-light uses not Control.Monad.Error directly, but Control.Monad.Error.Class. But it seems obvious that nested Control.Monad.Error.Class is deprecated as well. Control.Monad.Except seems to provide same functionality.

From Control.Monad.Error docs page:

Deprecated: Use Control.Monad.Except instead

acowley commented 8 years ago

Thanks for the report!