From: Adriana Draghici Date: Fri, 30 Apr 2010 08:57:01 +0000 (+0000) Subject: autorun: fixed small int to str bug X-Git-Tag: getopt_long~40 X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=9bd14cc27335bb1460a2d2a10836083e7774bbed;p=cs-p2p-next.git autorun: fixed small int to str bug --- diff --git a/autorun/server/Server.py b/autorun/server/Server.py index b4739ff..a4ce33c 100644 --- a/autorun/server/Server.py +++ b/autorun/server/Server.py @@ -198,7 +198,7 @@ class MyDaemon(Daemon): """ if int(transfer_id) not in self.processes_info: - return "Invalid transfer id: " + transfer_id + return "Invalid transfer id: " + str(transfer_id) status_file_path = self.processes_info[transfer_id][2] client = self.processes_info[transfer_id][0] if client == TRIBLER: