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.

