From: <de...@us...> - 2006-10-23 23:30:19
|
Revision: 17571 http://svn.sourceforge.net/gaim/?rev=17571&view=rev Author: deryni9 Date: 2006-10-23 16:30:15 -0700 (Mon, 23 Oct 2006) Log Message: ----------- 18:40:29 <casted> Hi, I found a bug in the gaim-remote script 18:41:48 <casted> ok. On line 104 it is currently: status_type = gaim.GaimSavedStatusGetType(current) 18:41:57 <casted> but should be: status_type = gaim.GaimSavedstatusGetType(current) 18:42:06 <casted> the status must be lowercase Modified Paths: -------------- trunk/COPYRIGHT trunk/libgaim/gaim-remote Modified: trunk/COPYRIGHT =================================================================== --- trunk/COPYRIGHT 2006-10-23 20:25:16 UTC (rev 17570) +++ trunk/COPYRIGHT 2006-10-23 23:30:15 UTC (rev 17571) @@ -45,6 +45,7 @@ Thomas Butter Andrea Canciani Michael Carlson +Keegan Carruthers-Smith Steve Cavilia Julien Cegarra Cerulean Studios, LLC Modified: trunk/libgaim/gaim-remote =================================================================== --- trunk/libgaim/gaim-remote 2006-10-23 20:25:16 UTC (rev 17570) +++ trunk/libgaim/gaim-remote 2006-10-23 23:30:15 UTC (rev 17571) @@ -101,7 +101,7 @@ status_id = params["status"] status_type = gaim.GaimPrimitiveGetTypeFromId(status_id) else: - status_type = gaim.GaimSavedStatusGetType(current) + status_type = gaim.GaimSavedstatusGetType(current) status_id = gaim.GaimPrimitiveGetIdFromType(status_type) if "message" in params: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |