formating of a comment

This commit is contained in:
M2j 2011-01-05 10:37:11 +01:00
parent 6de12718f6
commit d7ff9d37d2

View File

@ -31,12 +31,18 @@ class HideMode(object):
""" """
This is an enumeration class which specifies the different modes of hiding This is an enumeration class which specifies the different modes of hiding
the display. the display.
The ``Blank`` option is used to hide all output, specifically by covering
the display with a black screen. ``Blank``
The ``Theme`` option is used to hide all output, but covers the display with This mode is used to hide all output, specifically by covering the
the current theme background, as opposed to black. display with a black screen.
Lastly, the ``Desktop`` mode hides all output by minimising the display,
leaving the user's desktop showing. ``Theme``
This mode is used to hide all output, but covers the display with the
current theme background, as opposed to black.
``Desktop``
This mode hides all output by minimising the display, leaving the user's
desktop showing.
""" """
Blank = 1 Blank = 1
Theme = 2 Theme = 2