diff options
| author | Brad Allen <bradallen137@gmail.com> | 2010-03-18 16:47:52 -0600 |
|---|---|---|
| committer | Brad Allen <bradallen137@gmail.com> | 2010-03-18 16:47:52 -0600 |
| commit | f9fc9f85affff548a298e6f8a4db497dff6ea6f3 (patch) | |
| tree | acdc7acc5ed078ab2e57385a3af947fdcba5ba86 /lib | |
| parent | a03935ac97f71888f023c518aacd3494cb25b756 (diff) | |
| download | sqlalchemy-f9fc9f85affff548a298e6f8a4db497dff6ea6f3.tar.gz | |
fixed missing return statement which caused render_literal_value to choke
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sqlalchemy/dialects/mssql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py index 5a5cda7a9..c7713ac4d 100644 --- a/lib/sqlalchemy/dialects/mssql/base.py +++ b/lib/sqlalchemy/dialects/mssql/base.py @@ -1081,7 +1081,7 @@ class MSSQLStrictCompiler(MSSQLCompiler): # SQL Server wants single quotes around the date string. return "'" + str(value) + "'" else: - MSSQLCompiler.render_literal_value(self, value, type_) + return super(MSSQLStrictCompiler, self).render_literal_value(value, type_) class MSDDLCompiler(compiler.DDLCompiler): def get_column_specification(self, column, **kwargs): |
