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-07-31 21:42:09 (GMT)
committer Richard Darst <rkd@zgib.net>2009-07-31 21:42:09 (GMT)
commitadacd645f987d2837ad00b3928f3678c49a2fe2a (patch)
tree006fa1c79d4b1ab883eabbf729d59414754786be
parent61fd50a22d30c9f74e47ac5f50ac1fbbd53796f5 (diff)
Add a warning then the __main__ command isn't found
darcs-hash:20090731214209-82ea9-4c1695375475ab581ad7cbff22acf0a9029876ab.gz
-rw-r--r--meeting.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meeting.py b/meeting.py
index f735181..dc5b69e 100644
--- a/meeting.py
+++ b/meeting.py
@@ -542,5 +542,6 @@ if __name__ == '__main__':
line = m.group(3).strip()
M.addline(nick, "ACTION "+line, time_=time_)
#M.save() # should be done by #endmeeting in the logs!
-
+ else:
+ print 'Command "%s" not found.'%sys.argv[1]