~cjwatson/lazr.restful/newer-grokcore-martian

« back to all changes in this revision

Viewing changes to src/lazr/restful/error.py

  • Committer: Colin Watson
  • Date: 2020-02-04 12:16:21 UTC
  • mfrom: (231.1.1 py3-print)
  • Revision ID: cjwatson@canonical.com-20200204121621-i1zrdaykvsgg4rz6
[r=doismellburning] Apply absolute_import and print_function __future__ imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
"""Error handling on the webservice."""
4
4
 
 
5
from __future__ import absolute_import, print_function
 
6
 
5
7
__metaclass__ = type
6
8
__all__ = [
7
9
    'ClientErrorView',