bijoe: fix bad indenting in EngineDimension.members()

This commit is contained in:
Benjamin Dauvergne 2016-06-18 09:36:03 +02:00
parent 3bc9af648b
commit 6273e01a5c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class EngineDimension(object):
else:
sql = 'SELECT %s AS value, %s::text AS label FROM {fact_table} ORDER BY %s' % (
self.value, self.value_label or self.value, self.self.order_by or self.value)
sql = sql.format(fact_table=self.engine_cube.fact_table)
sql = sql.format(fact_table=self.engine_cube.fact_table)
self.engine.log.debug('SQL: %s', sql)
cursor.execute(sql)
for row in cursor.fetchall():