[Nym3-commit] r407 - trunk/nymbaron/Client

laurent at conuropsis.org laurent at conuropsis.org
Wed Nov 16 20:13:58 CET 2005


Author: laurent
Date: 2005-11-16 20:13:58 +0100 (Wed, 16 Nov 2005)
New Revision: 407

Modified:
   trunk/nymbaron/Client/Main.py
Log:
Convert ints to strings where needed.


Modified: trunk/nymbaron/Client/Main.py
===================================================================
--- trunk/nymbaron/Client/Main.py	2005-11-16 19:12:03 UTC (rev 406)
+++ trunk/nymbaron/Client/Main.py	2005-11-16 19:13:58 UTC (rev 407)
@@ -292,10 +292,10 @@
 	    account.acknowledge(com.acks, verbose = True)
 	    # TODO raise some warnings, exec some automatic actions and warn
 	    # the user
-	    ui.display("Number of Messages awaiting on the server: " + com.nMsg)
-	    ui.display("Number of Surbs available on the server: " + com.nSurb)
-	    ui.display("Maximum storage on the server: " + com.quota)
-	    ui.display("Currently used storage on the server: " + com.used)
+	    ui.display("Number of Messages awaiting on the server: " + str(com.nMsg))
+	    ui.display("Number of Surbs available on the server: " + str(com.nSurb))
+	    ui.display("Maximum storage on the server: " + str(com.quota))
+	    ui.display("Currently used storage on the server: " + str(com.used))
 	elif (com.ct() == SToCCODE['Summary']):
 	    # We need to decrypt the set of synopsis to retrieve the MIDs
 	    secring = decode_secring(config, ui)



More information about the Nym3-commit mailing list