# HG changeset patch # User Tero Marttila # Date 1410704368 -10800 # Node ID 08a0056f6175c505a60f9df359a253498a15a465 # Parent 67f956b71bdf25604ce5002ceaeddef5b97029c9 pypngtile: use Exception as base class, not BaseException diff -r 67f956b71bdf -r 08a0056f6175 python/pypngtile.pyx --- a/python/pypngtile.pyx Sun Sep 14 16:26:38 2014 +0300 +++ b/python/pypngtile.pyx Sun Sep 14 17:19:28 2014 +0300 @@ -32,7 +32,7 @@ CACHE_STALE = PT_CACHE_STALE CACHE_INCOMPAT = PT_CACHE_INCOMPAT -class Error (BaseException) : +class Error (Exception) : """ Base class for errors raised by pypngtile. """