From 8d5bef90be1719a16b3bbe9ea01e51af82e38044 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Sun, 23 Sep 2012 20:07:36 +0200 Subject: tracking: Fixed typo. --- modules/tracking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/tracking.py b/modules/tracking.py index 1b06678..4b308b0 100644 --- a/modules/tracking.py +++ b/modules/tracking.py @@ -479,7 +479,7 @@ class Module: try: session = Session() consignments = session.query(Consignment).filter(and_(Consignment.server == self.irc.factory.server, - or_(Consignment.channel.in_(config.get(self.irc.factory.server, 'channels').split()), Consignment.Channel == None))) + or_(Consignment.channel.in_(config.get(self.irc.factory.server, 'channels').split()), Consignment.channel == None))) for row in consignments: self.update_consignment(session, row) session.commit() -- cgit v1.2.3