diff options
author | Henri Sara <hesara@vaadin.com> | 2016-11-12 08:47:02 +0200 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2016-12-09 09:39:00 +0200 |
commit | 1c2a9664bd496d8b071000718bf359df996f8e0d (patch) | |
tree | 14008882cd06121ea143b2d07ef32d80168174ed | |
parent | d44fa8b3494fb3780d2c3f8ab73a8e202e73ccfd (diff) | |
download | vaadin-framework-1c2a9664bd496d8b071000718bf359df996f8e0d.tar.gz vaadin-framework-1c2a9664bd496d8b071000718bf359df996f8e0d.zip |
Fix python list syntax in BuildDemos
Change-Id: I42f2f3fa3597f67f259c3ff9f158560303ffb328
-rw-r--r-- | scripts/BuildDemos.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/BuildDemos.py b/scripts/BuildDemos.py index 01fdf4d25b..fd4c84fc32 100644 --- a/scripts/BuildDemos.py +++ b/scripts/BuildDemos.py @@ -30,7 +30,7 @@ def dump_status(error_occurred): pickle.dump(status_dump, open("result/demo_validation_status.pickle", "wb")) def log_status(log_string): - status_dump["messages"].add(log_string) + status_dump["messages"].append(log_string) print(log_string) def checkout(folder, url, repoBranch = "master"): |