From: Jaroslav Kysela Date: Sat, 3 Nov 2007 10:25:08 +0000 (+0100) Subject: fixed print in remove-user-ctl.py X-Git-Tag: v1.0.16rc1~1 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=302fca10ec773afe966fc51f7724a14bada36c71;p=alsa-python.git fixed print in remove-user-ctl.py --- diff --git a/utils/remove-user-ctl.py b/utils/remove-user-ctl.py index 5fdb48a..82a9407 100755 --- a/utils/remove-user-ctl.py +++ b/utils/remove-user-ctl.py @@ -9,5 +9,5 @@ for id in list: elem = Element(hctl, id[1:]) info = Info(elem) if info.isUser: - print 'Removing element %s' % id + print 'Removing element %s' % repr(id) hctl.elementRemove(id[1:])