Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-08-31 21:32:15 (GMT)
committer Richard Darst <rkd@zgib.net>2009-08-31 21:32:15 (GMT)
commit5c72faaf6f9e5d2f77dbfda5969dc6854bc7374a (patch)
tree4c792e4dde9319270333b2e4af992dc9fd4cbda3
parent6e7561cb9a62509a134c8fc8927cd50935b0a197 (diff)
Rename "#halp" command to "#help".
- because not everyone speaks lolcat as their native language. - remember, "#help" puts a call for help in the minutes, not give you MeetBot help. darcs-hash:20090831213215-82ea9-48ac6c8594969f87c4101fcf4547f843636dcc6c.gz
-rw-r--r--items.py4
-rw-r--r--meeting.py10
2 files changed, 7 insertions, 7 deletions
diff --git a/items.py b/items.py
index 7318166..63a011e 100644
--- a/items.py
+++ b/items.py
@@ -174,8 +174,8 @@ class Agreed(GenericItem):
itemtype = 'AGREED'
class Action(GenericItem):
itemtype = 'ACTION'
-class Halp(GenericItem):
- itemtype = 'HALP'
+class Help(GenericItem):
+ itemtype = 'HELP'
class Accepted(GenericItem):
itemtype = 'ACCEPTED'
starthtml = '<font color="green">'
diff --git a/meeting.py b/meeting.py
index 800d3ed..1d80e68 100644
--- a/meeting.py
+++ b/meeting.py
@@ -86,7 +86,7 @@ class Config(object):
startMeetingMessage = ("Meeting started %(starttime)s %(timeZone)s. "
"The chair is %(chair)s. Information about MeetBot at "
"%(MeetBotInfoURL)s.\n"
- "Useful Commands: #action #agreed #halp #info #idea #link "
+ "Useful Commands: #action #agreed #help #info #idea #link "
"#topic.")
endMeetingMessage = ("Meeting ended %(endtime)s %(timeZone)s. "
"Information about MeetBot at %(MeetBotInfoURL)s . "
@@ -372,11 +372,11 @@ class MeetingCommands(object):
"""Add informational item to the minutes."""
m = items.Idea(**kwargs)
self.additem(m)
- def do_halp(self, **kwargs):
- """Add call for halp to the minutes."""
- m = items.Halp(**kwargs)
+ def do_help(self, **kwargs):
+ """Add call for help to the minutes."""
+ m = items.Help(**kwargs)
self.additem(m)
- do_help = do_halp
+ do_halp = do_help
def do_nick(self, nick, line, **kwargs):
"""Make meetbot aware of a nick which hasn't said anything.