Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/audio.py
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2009-07-08 20:45:57 (GMT)
committer Simon Schampijer <simon@schampijer.de>2009-07-08 20:45:57 (GMT)
commit883f3e31dad75a44a6ca538b986b34f23e91e065 (patch)
treed84db78a6039b28fcfe8be3c7431c18b9535bde9 /audio.py
parent811dab3c9294b46dc1c5add4a84e7ace99fb83a6 (diff)
Inherit from object to follwo the guidelines
Diffstat (limited to 'audio.py')
-rw-r--r--audio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio.py b/audio.py
index d9b69c7..3481622 100644
--- a/audio.py
+++ b/audio.py
@@ -20,7 +20,7 @@ import logging
_logger = logging.getLogger('memorize-activity')
-class Audio:
+class Audio(object):
def __init__(self):
self._player = gst.element_factory_make('playbin', 'player')
fakesink = gst.element_factory_make('fakesink', 'my-fakesink')