From 9352322075d3ac98003ed33512d9c9228ff84bee Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 2 May 2012 20:58:56 +0200 Subject: [PATCH] Fix typo in schedule. --- src/schedule.py | 2 +- src/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schedule.py b/src/schedule.py index 1183fbbe5..19f0e89d8 100644 --- a/src/schedule.py +++ b/src/schedule.py @@ -89,7 +89,7 @@ class Schedule(drivers.IrcDriver): def removeEvent(self, name): """Removes the event with the given name from the schedule.""" f = self.events.pop(name) - self.schedule = [x for x in self.schedule if n != name] + self.schedule = [x for x in self.schedule if f != name] # We must heapify here because the heap property may not be preserved # by the above list comprehension. We could, conceivably, just mark # the elements of the heap as removed and ignore them when we heappop, diff --git a/src/version.py b/src/version.py index 45c5b19ed..67da69ee0 100644 --- a/src/version.py +++ b/src/version.py @@ -1,3 +1,3 @@ """stick the various versioning attributes in here, so we only have to change them once.""" -version = '0.83.4.1+limnoria (2012-05-02T18:58:36+0000)' +version = '0.83.4.1+limnoria (2012-05-02T18:58:56+0000)'