White space after \ at eol removed.

This commit is contained in:
Michele Comitini
2012-06-06 13:07:54 +02:00
parent 560aef2a1d
commit 29b8979bdb
+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]