# HG changeset patch # User Jeff Hammel # Date 1330467440 28800 # Node ID 2bfcba075db0be3ab75bf6c21846d5c3fc5c97c4 # Parent 3e8597489ea32d62d19b0d171e8c0a50e08977ed typo diff -r 3e8597489ea3 -r 2bfcba075db0 simpypi/dispatcher.py --- a/simpypi/dispatcher.py Tue Feb 28 14:16:48 2012 -0800 +++ b/simpypi/dispatcher.py Tue Feb 28 14:17:20 2012 -0800 @@ -30,7 +30,7 @@ # request handlers self.handlers = dict([(method, getattr(self, method)) - for i in ('GET', 'POST')]) + for method in ('GET', 'POST')]) # XXX unneeded for now # self.handlers = [ Index ]