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-06 21:56:55 (GMT)
committer Richard Darst <rkd@zgib.net>2009-08-06 21:56:55 (GMT)
commite524d976cfeb7382ab943761da3863a97a894240 (patch)
tree5db0bd099960198d4a03ccbf8f87b49763ee7f2d
parenta4317b04592452153d0035a9aef0f4bc32211b33 (diff)
Fix asctime() -> localtime() bug in previous record
darcs-hash:20090806215655-82ea9-7465533a8d09ba71a2d7164c546aefc5b950ac5f.gz
-rw-r--r--meeting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meeting.py b/meeting.py
index 7a5fc63..9a59326 100644
--- a/meeting.py
+++ b/meeting.py
@@ -421,7 +421,7 @@ class Meeting(MeetingCommands, object):
# runs, but I'm setting a default here to avoid a certain
# class of problems where an exception is raised during
# initialization.
- self.starttime = time.asctime()
+ self.starttime = time.localtime()
self._meetingTopic = None
self._meetingname = ""
self._meetingIsOver = False