diff options
| author | Georg Brandl <georg@python.org> | 2008-05-06 18:33:08 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-05-06 18:33:08 +0200 |
| commit | 9a0d4f1eed8aba8acaefdda94676a494a2f61a59 (patch) | |
| tree | 2a6701c477c8ec706fec50cdc3f92d745aa035d0 /pygments/formatters | |
| parent | 0fbd6d110e30d3f3433a1be8528797de1d6eb0a4 (diff) | |
| download | pygments-git-0.10.tar.gz | |
Ignore import errors in the tests.0.10
Diffstat (limited to 'pygments/formatters')
| -rw-r--r-- | pygments/formatters/img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/formatters/img.py b/pygments/formatters/img.py index 96665122..0b5831b2 100644 --- a/pygments/formatters/img.py +++ b/pygments/formatters/img.py @@ -43,7 +43,7 @@ DEFAULT_FONT_NAME_NIX = 'Bitstream Vera Sans Mono' DEFAULT_FONT_NAME_WIN = 'Courier New' -class PilNotAvailable(Exception): +class PilNotAvailable(ImportError): """When Python imaging library is not available""" |
