From: Eric S. Raymond Date: Fri, 17 May 2013 13:25:12 +0000 (-0400) Subject: Shut up, pylint! X-Git-Tag: 2.0~22 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=37d17a7f657af2f1ebdd761a0cf2d16445d45871;p=irker.git Shut up, pylint! --- diff --git a/Makefile b/Makefile index da28471..c99472c 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ clean: rm -f irkerd.8 irkerhook.1 irker-*.tar.gz *~ rm -f SHIPPER.* *.html -PYLINTOPTS = --rcfile=/dev/null --reports=n --include-ids=y --disable="C0103,C0111,C0301,R0201,R0902,R0903,R0912,R0915,E1101,W0201,W0621,W0702,F0401" +PYLINTOPTS = --rcfile=/dev/null --reports=n --include-ids=y --disable="C0103,C0111,C0301,R0201,R0902,R0903,R0912,R0914,R0915,E1101,W0201,W0212,W0621,W0702,F0401" pylint: @pylint --output-format=parseable $(PYLINTOPTS) irkerd @pylint --output-format=parseable $(PYLINTOPTS) irkerhook.py diff --git a/irkerd b/irkerd index f6c7146..b2bc9ce 100755 --- a/irkerd +++ b/irkerd @@ -1,5 +1,4 @@ #!/usr/bin/env python -from __future__ import with_statement """ irkerd - a simple IRC multiplexer daemon @@ -26,6 +25,8 @@ the irc client library at version >= 3.4 which requires 2.6: see http://pypi.python.org/pypi/irc/ """ +from __future__ import with_statement + # These things might need tuning HOST = "localhost"