diff options
author | MaZderMind <git@mazdermind.de> | 2015-08-07 08:37:55 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-08-07 08:37:55 +0200 |
commit | a753cd71a02cd64c3dd03bbf4d22b605bae82c7e (patch) | |
tree | 9b08b3274b32c707a8eb7e0f9e17a89f0e0b3427 /voctogui/lib/warningoverlay.py | |
parent | 34b3d802babc3818f77057c8cd7665e58fe16bfd (diff) |
Use New-Style Classes
Diffstat (limited to 'voctogui/lib/warningoverlay.py')
-rw-r--r-- | voctogui/lib/warningoverlay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctogui/lib/warningoverlay.py b/voctogui/lib/warningoverlay.py index 73e1b33..ad86b69 100644 --- a/voctogui/lib/warningoverlay.py +++ b/voctogui/lib/warningoverlay.py @@ -1,7 +1,7 @@ import logging from gi.repository import GLib -class VideoWarningOverlay: +class VideoWarningOverlay(object): """ Displays a Warning-Overlay above the Video-Feed of another VideoDisplay """ def __init__(self): |