fixed indentation error, thanks pbreit

This commit is contained in:
Massimo DiPierro
2012-06-06 10:54:44 -05:00
parent 6acc2b6ed7
commit 6fc2147b5e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-06-06 10:51:30) dev
Version 2.00.0 (2012-06-06 10:54:41) dev
+1 -1
View File
@@ -4127,7 +4127,7 @@ class GoogleDatastoreAdapter(NoSQLAdapter):
def select(self,query,fields,attributes):
(items, tablename, fields) = self.select_raw(query,fields,attributes)
# self.db['_lastsql'] = self._select(query,fields,attributes)
rows = [[(t=='id' and item.key().id_or_name()) or \
rows = [[(t=='id' and item.key().id_or_name()) or \
(t=='nativeRef' and item) or getattr(item, t) \
for t in fields] for item in items]
colnames = ['%s.%s' % (tablename, t) for t in fields]