From 544e53f01f21a548ce4c715a86148b1130d6116e Mon Sep 17 00:00:00 2001 From: Leonardo Date: Sat, 17 Apr 2010 10:33:20 +0200 Subject: [PATCH] Casting omesso. --- phcstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phcstats.py b/phcstats.py index 33904e7..3c198d3 100755 --- a/phcstats.py +++ b/phcstats.py @@ -54,7 +54,7 @@ def DumpClientData(client, data): data.items())) f = open(database_directory + client, 'w') for stat in data.items(): - f.write (":".join(stat)) + f.write (":".join(map(str, stat)) f.close() def UpdateClientsData(client, alive): -- 2.1.4