Commit 84d88f5c authored by Carl Meyer's avatar Carl Meyer
Browse files

Removed a deprecated use of SQLCompiler as quote_name in GIS.

parent cf7a2a00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ class GeoSQLCompiler(compiler.SQLCompiler):
        This routine is overridden from Query to handle customized selection of
        geometry columns.
        """
        qn = self
        qn = self.quote_name_unless_alias
        qn2 = self.connection.ops.quote_name
        result = ['(%s) AS %s' % (self.get_extra_select_format(alias) % col[0], qn2(alias))
                  for alias, col in six.iteritems(self.query.extra_select)]