Missing space between command and opts

There is a space missing between the command and options in Modules.py sendSMTPMessage.

--- Modules.py.old 2009-08-26 09:58:39.000000000 +0100 +++ Modules.py 2009-08-26 09:58:56.000000000 +0100 @@ -1463,7 +1463,7 @@ # FFFF messages in a row. if cfgSection['SendmailCommand'] is not None: cmd, opts = cfgSection['SendmailCommand']

  •    command = cmd + (" ".join(opts))
  •    command = cmd + " " + (" ".join(opts))
       f = os.popen(command, 'w')
       f.write(message)
       f.close()

[Automatically added by flyspray2trac: Operating System: All]

Trac:
Username: zax