~jtatum/ubuntu-bots/meetingology

« back to all changes in this revision

Viewing changes to meeting.py

  • Committer: Alan Bell
  • Date: 2010-09-23 19:46:54 UTC
  • Revision ID: alan@backup-20100923194654-1iv1kc5m4bldmvd8
help commands in better order and more complete

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
    startMeetingMessage = ("Meeting started %(starttime)s %(timeZone)s.  "
85
85
              "The chair is %(chair)s. Information about MeetBot at "
86
86
              "%(MeetBotInfoURL)s.\n"
87
 
              "Useful Commands: #action #agreed #help #info #idea #link "
88
 
              "#topic.")
 
87
              "Useful Commands: #topic #action #link #idea #voters #vote #chair #action #agreed #help #info "
 
88
              "#endmeeting.")
89
89
    endMeetingMessage = ("Meeting ended %(endtime)s %(timeZone)s.  "
90
90
                         "Information about MeetBot at %(MeetBotInfoURL)s . "
91
91
                         "(v %(__version__)s)\n"
277
277
        message = self.config.startMeetingMessage%repl
278
278
        for messageline in message.split('\n'):
279
279
            self.reply(messageline)
280
 
            self.reply("updated")
281
280
        if line.strip():
282
281
            self.do_meetingtopic(nick=nick, line=line, time_=time_, **kwargs)
283
282