~ubuntu-branches/ubuntu/vivid/ceilometer/vivid

« back to all changes in this revision

Viewing changes to tools/lintstack.py

  • Committer: Package Import Robot
  • Author(s): James Page, Corey Bryant, James Page
  • Date: 2015-02-19 14:59:07 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20150219145907-9jojybdsl64zcn14
Tags: 2015.1~b2-0ubuntu1
[ Corey Bryant ]
* New upstream release.
  - d/control: Align requirements with upstream.
  - d/p/skip-test.patch: Rebased.

[ James Page ]
* d/rules,d/p/skip-gabbi.patch: Skip tests that rely on python-gabbi until
  packaging and MIR is complete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
 
104
104
    def review_str(self):
105
105
        return ("File %(filename)s\nLine %(lineno)d:%(line_content)s\n"
106
 
                "%(code)s: %(message)s" % self.__dict__)
 
106
                "%(code)s: %(message)s" % {
 
107
                    "filename": self.filename,
 
108
                    "lineno": self.lineno,
 
109
                    "line_content": self.line_content,
 
110
                    "code": self.code,
 
111
                    "message": self.message,
 
112
                })
107
113
 
108
114
 
109
115
class ErrorKeys(object):