diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2007-02-22 13:11:45 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2007-02-22 13:11:45 +0100 |
commit | fa48604bac2b22dd06e9261ab2b2371569e46c61 (patch) | |
tree | ac1c4dfcc07a251732c59a775c9f70221a012fc9 /_exceptions.py | |
parent | 4800e2da897bb5ebabdb59ab70b1797228a79fbb (diff) | |
download | astroid-git-fa48604bac2b22dd06e9261ab2b2371569e46c61.tar.gz |
fix chained import as bug
Diffstat (limited to '_exceptions.py')
-rw-r--r-- | _exceptions.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/_exceptions.py b/_exceptions.py index 8e2ee582..009f10ba 100644 --- a/_exceptions.py +++ b/_exceptions.py @@ -12,15 +12,13 @@ # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """this module contains exceptions used in the astng library -:version: $Revision: 1.4 $ :author: Sylvain Thenault -:copyright: 2003-2006 LOGILAB S.A. (Paris, FRANCE) +:copyright: 2003-2007 LOGILAB S.A. (Paris, FRANCE) :contact: http://www.logilab.fr/ -- mailto:python-projects@logilab.org -:copyright: 2003-2006 Sylvain Thenault +:copyright: 2003-2007 Sylvain Thenault :contact: mailto:thenault@gmail.com """ -__revision__ = "$Id: _exceptions.py,v 1.4 2006-03-06 08:57:52 syt Exp $" __doctype__ = "restructuredtext en" class ASTNGError(Exception): |