diff --git a/morituri/common/gstreamer.py b/morituri/common/gstreamer.py index 250206d..04ec955 100644 --- a/morituri/common/gstreamer.py +++ b/morituri/common/gstreamer.py @@ -28,6 +28,10 @@ class GstException(Exception): self.gerror = gerror self.debug = debug + def __repr__(self): + return '' % ( + self.gerror.message, self.debug) + class GstPipelineTask(task.Task): """ I am a base class for tasks that use a GStreamer pipeline.