summaryrefslogtreecommitdiff
path: root/pygments/formatters/img.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-06 18:33:08 +0200
committerGeorg Brandl <georg@python.org>2008-05-06 18:33:08 +0200
commit9a0d4f1eed8aba8acaefdda94676a494a2f61a59 (patch)
tree2a6701c477c8ec706fec50cdc3f92d745aa035d0 /pygments/formatters/img.py
parent0fbd6d110e30d3f3433a1be8528797de1d6eb0a4 (diff)
downloadpygments-git-0.10.tar.gz
Ignore import errors in the tests.0.10
Diffstat (limited to 'pygments/formatters/img.py')
-rw-r--r--pygments/formatters/img.py2
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"""