diff options
Diffstat (limited to 'backend/views.py')
| -rw-r--r-- | backend/views.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/backend/views.py b/backend/views.py index 29df477..803d97c 100644 --- a/backend/views.py +++ b/backend/views.py @@ -181,11 +181,12 @@ def texts_response_str(texts): strio = u"" out = u"" for text in texts: - out += ('%d\t%s\t%d\t%d\t%s\t%s\n' % ( + out += ('%d\t%s\t%s\t%s\n' % ( + #out += ('%d\t%s\t%d\t%d\t%s\t%s\n' % ( text.id, datetime_to_timestamp(text.datetime), - text.user.id, - text.room.id, + #text.user.id, FIXME + #text.room.id, text.user.username, text.settings.get('text', '') )) |
