diff contrib/xchat-audacious.py @ 2753:aadc6fd97cc7 trunk

[svn] - fix syntax error
author nenolod
date Fri, 11 May 2007 21:28:08 -0700
parents 1ca3b314301d
children 0ddb7b526447
line wrap: on
line diff
--- a/contrib/xchat-audacious.py	Fri May 11 21:27:02 2007 -0700
+++ b/contrib/xchat-audacious.py	Fri May 11 21:28:08 2007 -0700
@@ -6,7 +6,7 @@
 #   - support org.freedesktop.MediaPlayer (MPRIS)?
 #
 # This script is in the public domain.
-#   $Id: xchat-audacious.py 4530 2007-05-12 04:27:02Z nenolod $
+#   $Id: xchat-audacious.py 4532 2007-05-12 04:28:08Z nenolod $
 #
 
 __module_name__ = "xchat-audacious"
@@ -61,7 +61,7 @@
 		return xchat.EAT_ALL
 
 	aud = bus.get_object('org.atheme.audacious', '/org/atheme/audacious')
-	xchat.command("DCC SEND %s %s" % (word[0], aud.SongFilename(aud.Position()))
+	xchat.command("DCC SEND %s %s" % (word[0], aud.SongFilename(aud.Position())))
 	return xchat.EAT_ALL
 
 xchat.hook_command("NP", command_np, help="Displays current playing song.")
@@ -72,4 +72,4 @@
 xchat.hook_command("PLAY", command_play, help="Begins playback.")
 xchat.hook_command("SENDTRACK", command_send, help="Sends the currently playing track to a user.")
 
-print "xchat-audacious $Id: xchat-audacious.py 4530 2007-05-12 04:27:02Z nenolod $ loaded"
+print "xchat-audacious $Id: xchat-audacious.py 4532 2007-05-12 04:28:08Z nenolod $ loaded"