From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P6n8k-0006fO-Gl for garchives@archives.gentoo.org; Fri, 15 Oct 2010 16:28:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CDADE09AA; Fri, 15 Oct 2010 16:27:57 +0000 (UTC) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by pigeon.gentoo.org (Postfix) with ESMTP id 34837E09AA for ; Fri, 15 Oct 2010 16:27:57 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.messagingengine.com (Postfix) with ESMTP id DDC3E3E9 for ; Fri, 15 Oct 2010 12:27:56 -0400 (EDT) Received: from frontend1.messagingengine.com ([10.202.2.160]) by compute3.internal (MEProxy); Fri, 15 Oct 2010 12:27:56 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=messagingengine.com; h=subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:content-transfer-encoding; s=smtpout; bh=63Kgx7BZwPJdHIir9nhD5Dvb3Uw=; b=Wkz1NEnuM17sVtZAraBqzay3ErOwpZiFxvxBaXu53U1VEprTauOiwr2t5KLNVHchK8dMwIg8sGrkIdMRv9aYfKhJQ8o0MpVAkgq54j7y5Dn7rrCPceMxdHR09zLAwvHjTL9iHzFFYY9vwoKW86km2YC4p5M+HDaYzpR7huofdN8= X-Sasl-enc: 3L+lWC1V7Y3SO/mP4u9nccyjbBXNbT9iztipUzEi66FS 1287160076 Received: from [192.168.0.108] (65.23.112.45.nw.nuvox.net [65.23.112.45]) by www.fastmail.fm (Postfix) with ESMTPSA id 94E7D4068F0 for ; Fri, 15 Oct 2010 12:27:56 -0400 (EDT) Subject: Re: [gentoo-user] emerge/python failure From: Albert Hopkins To: gentoo-user@lists.gentoo.org In-Reply-To: References: Content-Type: text/plain; charset="us-ascii" Date: Fri, 15 Oct 2010 12:27:55 -0400 Message-ID: <1287160075.21472.3.camel@paska> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit X-Archives-Salt: bc4af96a-06d4-471a-80a9-56b186b824c1 X-Archives-Hash: 08bc8591a3d77e913d6aecf5fbb719e8 On Fri, 2010-10-15 at 07:35 -0700, Mark Knecht wrote: > File "/usr/lib64/portage/pym/_emerge/actions.py", line 2134, in > action_sync > "//" + user_name + ip + port + "/", 1)) > TypeError: cannot concatenate 'str' and 'int' objects This is a bug... shuld be more something like: uris.append(syncuri.replace( "//%s%s%s/" % (user_name, hostname, port), "//%s%s%s/" % (user_name, ip, port), 1)) Probably needs to be reported.