slackmail: Remove newline at beginning of message

It's not really needed for anything, and may make parsing more
difficult.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2015-05-29 08:46:07 -04:00
parent 1bc6d1064f
commit e80b200a31
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ for channel in slack.channels.list():
continue
chan = ("channel=%s" % channel.id()).rjust(40)
text = [ "", "%s%s" % (repl, chan), ""]
text = [ "%s%s" % (repl, chan), ""]
text += [ str(channel) ] + [ "" ]
for message in channel.read():
text += [ str(message) ]