commit | 3c38ead777ce7ca8e422f48066f4478ea59e1fb6 | [log] [tgz] |
---|---|---|
author | gstepanov <gstepanov@mirantis.com> | Mon Feb 09 15:33:36 2015 +0200 |
committer | gstepanov <gstepanov@mirantis.com> | Mon Feb 09 15:33:36 2015 +0200 |
tree | 3c3816c1aaead9105dbaa4a796c5ea5b853b8eb0 | |
parent | 13bbabf14b52fa9201fd928a60825dc0a3988689 [diff] |
POST for receiving test results fixed
diff --git a/web_app/__init__.py b/web_app/__init__.py index 3a5aa4f..a5be111 100644 --- a/web_app/__init__.py +++ b/web_app/__init__.py
@@ -110,7 +110,7 @@ tests = json.loads(request.data) if not hasattr(g, "storage"): - g.storage = create_storage("file://" + TEST_PATH + test_name + ".json", "", "") + g.storage = create_storage("file://" + TEST_PATH + '/' + test_name + ".json", "", "") for test in tests: g.storage.store(test)