aboutsummaryrefslogtreecommitdiffstats
path: root/errors.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-11-14 01:58:48 +0000
committerAndrew M. Kuchling <amk@amk.ca>2002-11-14 01:58:48 +0000
commitfdfa7f054ccb881256c4696ad9dadbb5f0f9aa1c (patch)
treedb0c51dcea7fc282176db789e66db6b482fb168e /errors.py
parentfb4cdac4953c41880107d487afc61c4b7ca937b2 (diff)
downloadexternal_python_setuptools-fdfa7f054ccb881256c4696ad9dadbb5f0f9aa1c.tar.gz
external_python_setuptools-fdfa7f054ccb881256c4696ad9dadbb5f0f9aa1c.tar.bz2
external_python_setuptools-fdfa7f054ccb881256c4696ad9dadbb5f0f9aa1c.zip
Fix docstring typo; remove 'created' line
Diffstat (limited to 'errors.py')
-rw-r--r--errors.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/errors.py b/errors.py
index bec34645..963d8337 100644
--- a/errors.py
+++ b/errors.py
@@ -5,11 +5,9 @@ modules may raise standard exceptions; in particular, SystemExit is
usually raised for errors that are obviously the end-user's fault
(eg. bad command-line arguments).
-This module safe to use in "from ... import *" mode; it only exports
+This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error"."""
-# created 1999/03/03, Greg Ward
-
__revision__ = "$Id$"
class DistutilsError (Exception):