diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-04-02 21:20:16 -0400 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-04-02 21:20:16 -0400 |
commit | a122db80f20198ef03e4cd5e106703239c45bd53 (patch) | |
tree | 770283aa29e1da7770c9f90f0897035f9be58d62 /lib/sqlalchemy/dialects/mysql/base.py | |
parent | 47a799ecd5d03b78e5d67918302c0da2950d27b8 (diff) | |
download | sqlalchemy-a122db80f20198ef03e4cd5e106703239c45bd53.tar.gz |
most of the drizzle docs are copy/pasta, let's just point users to the mysql docs and enhance as questions arise
- see #2385
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql/base.py')
-rw-r--r-- | lib/sqlalchemy/dialects/mysql/base.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py index d9ab5a34f..a67a67d6f 100644 --- a/lib/sqlalchemy/dialects/mysql/base.py +++ b/lib/sqlalchemy/dialects/mysql/base.py @@ -344,9 +344,9 @@ class _FloatType(_NumericType, sqltypes.Float): (precision is None and scale is not None) or (precision is not None and scale is None) ): - raise exc.ArgumentError( - "You must specify both precision and scale or omit " - "both altogether.") + raise exc.ArgumentError( + "You must specify both precision and scale or omit " + "both altogether.") super(_FloatType, self).__init__(precision=precision, asdecimal=asdecimal, **kw) self.scale = scale |