~ubuntu-branches/debian/jessie/cherrypy3/jessie

« back to all changes in this revision

Viewing changes to cherrypy/_cpchecker.py

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-08-15 14:52:43 UTC
  • mfrom: (6.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090815145243-ydtmn7e0vejt4r3l
* New upstream release (Closes: #528473)
* debian/rules:
- use the quilt make include file instead of using custom code; should
  make the package convertable to the new quilt source format
  (Closes: #538677)
* debian/control:
- updated Standards-Version with no changes
* debian/python-cherrypy3.links:
- fix link to point to the new place where python-support installs files

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
            finally:
40
40
                warnings.formatwarning = oldformatwarning
41
41
    
42
 
    def formatwarning(self, message, category, filename, lineno):
 
42
    def formatwarning(self, message, category, filename, lineno, line=None):
43
43
        """Function to format a warning."""
44
44
        return "CherryPy Checker:\n%s\n\n" % message
45
45