From 4341b7c2efaa98b9997cf5841c050b3e52ca6978 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 16 Oct 2012 14:01:17 +0200 Subject: [PATCH] Change author of mixers to 'Mopidy' --- mopidy/audio/mixers/auto.py | 2 +- mopidy/audio/mixers/fake.py | 2 +- mopidy/audio/mixers/nad.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mopidy/audio/mixers/auto.py b/mopidy/audio/mixers/auto.py index 3dce11f7..a4bd8bdb 100644 --- a/mopidy/audio/mixers/auto.py +++ b/mopidy/audio/mixers/auto.py @@ -14,7 +14,7 @@ class AutoAudioMixer(gst.Bin): 'AutoAudioMixer', 'Mixer', 'Element automatically selects a mixer.', - 'Thomas Adamcik') + 'Mopidy') def __init__(self): gst.Bin.__init__(self) diff --git a/mopidy/audio/mixers/fake.py b/mopidy/audio/mixers/fake.py index d44fbd71..0e397e55 100644 --- a/mopidy/audio/mixers/fake.py +++ b/mopidy/audio/mixers/fake.py @@ -11,7 +11,7 @@ class FakeMixer(gst.Element, gst.ImplementsInterface, gst.interfaces.Mixer): 'FakeMixer', 'Mixer', 'Fake mixer for use in tests.', - 'Thomas Adamcik') + 'Mopidy') track_label = gobject.property(type=str, default='Master') track_initial_volume = gobject.property(type=int, default=0) diff --git a/mopidy/audio/mixers/nad.py b/mopidy/audio/mixers/nad.py index d50c1242..39a7b25e 100644 --- a/mopidy/audio/mixers/nad.py +++ b/mopidy/audio/mixers/nad.py @@ -23,7 +23,7 @@ class NadMixer(gst.Element, gst.ImplementsInterface, gst.interfaces.Mixer): 'NadMixer', 'Mixer', 'Mixer to control NAD amplifiers using a serial link', - 'Stein Magnus Jodal') + 'Mopidy') port = gobject.property(type=str, default='/dev/ttyUSB0') source = gobject.property(type=str)