]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added DistutilsTemplateError.
authorGreg Ward <gward@python.net>
Sun, 30 Jul 2000 01:03:31 +0000 (01:03 +0000)
committerGreg Ward <gward@python.net>
Sun, 30 Jul 2000 01:03:31 +0000 (01:03 +0000)
Lib/distutils/errors.py

index a718f01a40cb24b69a59a317bf84fba7e8b86219..bec34645112880a5993ec3022095d05f9b1d7e2c 100644 (file)
@@ -73,6 +73,9 @@ class DistutilsInternalError (DistutilsError):
     should never be seen if the code is working!)."""
     pass
 
+class DistutilsTemplateError (DistutilsError):
+    """Syntax error in a file list template."""
+
 
 # Exception classes used by the CCompiler implementation classes
 class CCompilerError (Exception):