Package: jackd2
Version: 1.9.8~dfsg.4+20120529git007cdc37-1
Priority: important

This is broken upstream, they would probably appreciate the attached
patch too.  It fixes two things, mixing tabs and spaces in a python
program; and broken string formatting interpolation due to an errant
parenthesis.

-- 
Jamie Heilman                     http://audible.transient.net/~jamie/
--- jack_control.orig	2012-05-27 03:11:33.969454794 +0000
+++ jack_control	2012-06-02 23:31:20.568501561 +0000
@@ -109,7 +109,7 @@
         print "    status                     - check whether jack server is started, return value is 0 if running and 1 otherwise"
         print "    start                      - start jack server if not currently started"
         print "    stop                       - stop jack server if currently started"
-	print "    sm                         - switch master to currently selected driver"
+        print "    sm                         - switch master to currently selected driver"
         print "    dl                         - get list of available drivers"
         print "    dg                         - get currently selected driver"
         print "    ds <driver>                - select driver"
@@ -161,7 +161,7 @@
             elif arg == 'stop':
                 print "--- stop"
                 control_iface.StopServer()
-	    elif arg == 'sm':
+            elif arg == 'sm':
                 print "--- switch master driver"
                 control_iface.SwitchMaster()
             elif arg == 'ism':
@@ -322,7 +322,7 @@
                 param = sys.argv[index]
                 index += 1
 
-                print "--- internal param reset \"%s\"" % (param
+                print "--- internal param reset \"%s\"" % param
 
                 configure_iface.ResetParameterValue(['internals', internal_name, param])
             elif arg == 'iload':
_______________________________________________
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Reply via email to