Description: Update pylint configuration location
 The pylint configuration is installed in /usr/share on Debian, rather than
 next to the source code; patch twistedchecker to look in the right location.
Author: Tristan Seligmann <mithrandi@debian.org>

Index: twistedchecker/twistedchecker/core/runner.py
===================================================================
--- twistedchecker.orig/twistedchecker/core/runner.py	2012-11-26 14:39:14.133126000 +0200
+++ twistedchecker/twistedchecker/core/runner.py	2012-11-26 15:33:17.453868859 +0200
@@ -45,8 +45,7 @@
         # register standard checkers.
         self.linter.load_default_plugins()
         # read configuration.
-        pathConfig = os.path.join(twistedchecker.abspath,
-                                  "configuration", "pylintrc")
+        pathConfig = '/usr/share/twistedchecker/pylintrc'
         self.linter.read_config_file(pathConfig)
         # now we can load file config and command line, plugins (which can
         # provide options) have been registered.
