From 45a37ac24d457a8794b76c911a861f9dc9ea7594 Mon Sep 17 00:00:00 2001 From: Timur Nurlygayanov Date: Thu, 28 Mar 2013 17:56:18 +0400 Subject: [PATCH] Finalize UI. --- tabula/tabula/windc/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tabula/tabula/windc/api.py b/tabula/tabula/windc/api.py index 59e105d..6f24c65 100644 --- a/tabula/tabula/windc/api.py +++ b/tabula/tabula/windc/api.py @@ -164,9 +164,9 @@ def get_status_message_for_service(request, service_id): reports = windcclient(request).sessions.\ reports(environment_id, session_id, service_id) - result = "" + result = 'Initialization.... \n' for report in reports: - result += ' ' + report.text + '\n' + result += ' ' + str(report.text) + '\n' return result