diff options
Diffstat (limited to 'Lib/toaiff.py')
-rw-r--r-- | Lib/toaiff.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/toaiff.py b/Lib/toaiff.py index 84a7786..52c5a89 100644 --- a/Lib/toaiff.py +++ b/Lib/toaiff.py @@ -53,7 +53,8 @@ uncompress = pipes.Template() uncompress.append('uncompress', '--') -error = 'toaiff.error' # Exception +class error(Exception): + pass def toaiff(filename): temps = [] |