docs: Show full exception path

This commit is contained in:
Stein Magnus Jodal 2014-07-17 01:31:46 +02:00
parent 47c507b8a7
commit b24835163b
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ The following requirements applies to any frontend implementation:
- Such config values MUST be documented.
- The main actor MUST raise the :exc:`~mopidy.exceptions.FrontendError` with a
- The main actor MUST raise the :exc:`mopidy.exceptions.FrontendError` with a
descriptive error message if the defined config values are not adequate for
the frontend to work properly.

View File

@ -9,7 +9,7 @@ class Backend(object):
"""Backend API
If the backend has problems during initialization it should raise
:exc:`~mopidy.exceptions.BackendError` with a descriptive error message.
:exc:`mopidy.exceptions.BackendError` with a descriptive error message.
This will make Mopidy print the error message and exit so that the user can
fix the issue.

View File

@ -13,7 +13,7 @@ class Mixer(object):
Audio mixer API
If the mixer has problems during initialization it should raise
:exc:`~mopidy.exceptions.MixerError` with a descriptive error message. This
:exc:`mopidy.exceptions.MixerError` with a descriptive error message. This
will make Mopidy print the error message and exit so that the user can fix
the issue.