Skip to content

Commit

Permalink
fix xpra control "sound-output" subcommand: command is already popped…
Browse files Browse the repository at this point in the history
… from the args list

git-svn-id: https://xpra.org/svn/Xpra/trunk@8748 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Mar 8, 2015
1 parent 4ff3c3c commit 73172f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server/server_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ def debug_usage():
return arg_err("more than 1")
msg = []
for csource in sources:
msg.append("%s : %s" % (csource, csource.sound_control(*args[1:])))
msg.append("%s : %s" % (csource, csource.sound_control(*args)))
return 0, ", ".join(msg)
elif command=="suspend":
for csource in sources:
Expand Down

0 comments on commit 73172f2

Please sign in to comment.