Browse Source

Fix python list syntax in BuildDemos

Change-Id: I42f2f3fa3597f67f259c3ff9f158560303ffb328
tags/8.0.0.alpha9
Henri Sara 7 years ago
parent
commit
1c2a9664bd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      scripts/BuildDemos.py

+ 1
- 1
scripts/BuildDemos.py View File

@@ -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"):

Loading…
Cancel
Save