On Fri, 20 Jun 2008 18:58:03 +0200, Axel Hecht <l10n.moz at googlemail.com> wrote: >You could try this > >from twisted.python import log >def importQuickFiles(*args): > log.msg(', '.join(map(lambda a: str(a), args))) The lambda here is redundant. map(str, args) does the same thing. :) Jean-Paul