commit | 455445afb7077e19ce448d9bd77750cc1d947cdf | [log] [tgz] |
---|---|---|
author | Fred Drake <[email protected]> | Fri Aug 18 14:59:33 2000 +0000 |
committer | Fred Drake <[email protected]> | Fri Aug 18 14:59:33 2000 +0000 |
tree | 532d1a00e8a20415483a012624e3a2bfec6fc5f3 | |
parent | 8b4be113eaaaa4c30e734fa0a6b588fb801ee2e7 [diff] [blame] |
Convert some old-style string exceptions to class exceptions.
diff --git a/Lib/plat-irix5/flp.py b/Lib/plat-irix5/flp.py index 9f1957f..6c6dae5 100755 --- a/Lib/plat-irix5/flp.py +++ b/Lib/plat-irix5/flp.py
@@ -12,7 +12,8 @@ FORMLINE = '=============== FORM ===============' ENDLINE = '==============================' -error = 'flp.error' +class error(Exception): + pass ################################################################## # Part 1 - The parsing routines #