~publish-bot/publish-bot/trunk

« back to all changes in this revision

Viewing changes to bzrcommitmessage.py

  • Committer: Christopher Armstrong
  • Date: 2007-02-28 16:31:11 UTC
  • mfrom: (9.2.2 hashless-channel-names)
  • Revision ID: radix@twistedmatrix.com-20070228163111-02odm2tn7dcls8y3
Merge jkakar's thing that adsd a # to the front of the channel name to avoid quatation

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    s.connect((host, port))
16
16
    packit = ''
17
17
    for line in message.splitlines():
18
 
        packit += '%s:%s:%s\r\n' % (password, channel, line)
 
18
        packit += '%s:#%s:%s\r\n' % (password, channel, line)
19
19
    s.sendall(packit)
20
20
    s.close()