From: Mike Bayer Date: Wed, 7 Feb 2007 01:15:03 +0000 (+0000) Subject: removed MissingTypeError (think it was an accidental checkin) X-Git-Tag: rel_0_3_5~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=648805f8b4d85aaaa221d2587e45259897d6b9f9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git removed MissingTypeError (think it was an accidental checkin) --- diff --git a/lib/sqlalchemy/exceptions.py b/lib/sqlalchemy/exceptions.py index 1caee06494..7e3883aec8 100644 --- a/lib/sqlalchemy/exceptions.py +++ b/lib/sqlalchemy/exceptions.py @@ -61,7 +61,4 @@ class DBAPIError(SQLAlchemyError): SQLAlchemyError.__init__(self, "(%s) (%s) %s"% (message, orig.__class__.__name__, str(orig))) self.orig = orig -class MissingTypeError(SQLAlchemyError): - """no database type is available for the sa type""" - pass