gyrus r338 - in branches/gyrus-python: . src



Author: csaavedra
Date: Fri Mar 14 17:13:48 2008
New Revision: 338
URL: http://svn.gnome.org/viewvc/gyrus?rev=338&view=rev

Log:
2008-03-14  Claudio Saavedra  <csaavedra alumnos utalca cl>

        * src/gyrus_admin_mailbox.py: (get_quota_of_mailbox)
        Use response variable instead of undefined r one.
        Partially fixes bug #521001 (Alejandro ValdÃs)



Modified:
   branches/gyrus-python/ChangeLog
   branches/gyrus-python/src/gyrus_admin_mailbox.py

Modified: branches/gyrus-python/src/gyrus_admin_mailbox.py
==============================================================================
--- branches/gyrus-python/src/gyrus_admin_mailbox.py	(original)
+++ branches/gyrus-python/src/gyrus_admin_mailbox.py	Fri Mar 14 17:13:48 2008
@@ -44,8 +44,8 @@
 	lstore = gtk.ListStore(
 	    gtk.gdk.Pixbuf,
 	    gobject.TYPE_STRING,
-            gobject.TYPE_UINT,
-            gobject.TYPE_UINT)
+            gobject.TYPE_INT,
+            gobject.TYPE_INT)
 	
 	
 	model = admin.treeview_users.get_model()
@@ -108,4 +108,4 @@
 		free = 0
 		quota = 0
 		
-		return False,r[1][0],free,quota
+		return False,response[1][0],free,quota



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]