Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-08-09 03:12:17 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-08-09 03:12:53 +0300
commitc4f45178288cc6b691f639e6c6a21bf1e63bdc78 (patch)
tree2c077c3c43a85cd01bb5e2541b5d9fe2ac83ca7f /scripts/ci/babysitter
parent3e6701d4b208d1718fa96d6c58691ca9e4cb6797 (diff)
[ci] Another Python 3 fix in babysitter
``` File "./scripts/ci/babysitter", line 424, in run for xml in (xml_list + wrote_xml): TypeError: can only concatenate list (not "map") to list ```
Diffstat (limited to 'scripts/ci/babysitter')
-rwxr-xr-xscripts/ci/babysitter2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/babysitter b/scripts/ci/babysitter
index 2d3cede04ea..a1aecd13e3d 100755
--- a/scripts/ci/babysitter
+++ b/scripts/ci/babysitter
@@ -421,7 +421,7 @@ def run(): # Returns exit code
print(message)
if not log[SUPPORT_JSON]:
- for xml in (xml_list + wrote_xml):
+ for xml in (xml_list + list(wrote_xml)):
verbose_print("Will attempt to load XML from %s" % (xml))
try:
data = xmlparse(xml).documentElement