diff options
Diffstat (limited to 'bitbake/lib/toaster/orm')
-rw-r--r-- | bitbake/lib/toaster/orm/management/commands/lsupdates.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/orm/management/commands/lsupdates.py b/bitbake/lib/toaster/orm/management/commands/lsupdates.py index 3b950e6e15..eb097555e2 100644 --- a/bitbake/lib/toaster/orm/management/commands/lsupdates.py +++ b/bitbake/lib/toaster/orm/management/commands/lsupdates.py | |||
@@ -87,13 +87,13 @@ class Command(BaseCommand): | |||
87 | 87 | ||
88 | # update branches; only those that we already have names listed in the | 88 | # update branches; only those that we already have names listed in the |
89 | # Releases table | 89 | # Releases table |
90 | whitelist_branch_names = [rel.branch_name | 90 | allowed_branch_names = [rel.branch_name |
91 | for rel in Release.objects.all()] | 91 | for rel in Release.objects.all()] |
92 | if len(whitelist_branch_names) == 0: | 92 | if len(allowed_branch_names) == 0: |
93 | raise Exception("Failed to make list of branches to fetch") | 93 | raise Exception("Failed to make list of branches to fetch") |
94 | 94 | ||
95 | logger.info("Fetching metadata for %s", | 95 | logger.info("Fetching metadata for %s", |
96 | " ".join(whitelist_branch_names)) | 96 | " ".join(allowed_branch_names)) |
97 | 97 | ||
98 | # We require a non-empty bb.data, but we can fake it with a dictionary | 98 | # We require a non-empty bb.data, but we can fake it with a dictionary |
99 | layerindex = layerindexlib.LayerIndex({"DUMMY" : "VALUE"}) | 99 | layerindex = layerindexlib.LayerIndex({"DUMMY" : "VALUE"}) |
@@ -101,8 +101,8 @@ class Command(BaseCommand): | |||
101 | http_progress = Spinner() | 101 | http_progress = Spinner() |
102 | http_progress.start() | 102 | http_progress.start() |
103 | 103 | ||
104 | if whitelist_branch_names: | 104 | if allowed_branch_names: |
105 | url_branches = ";branch=%s" % ','.join(whitelist_branch_names) | 105 | url_branches = ";branch=%s" % ','.join(allowed_branch_names) |
106 | else: | 106 | else: |
107 | url_branches = "" | 107 | url_branches = "" |
108 | layerindex.load_layerindex("%s%s" % (self.apiurl, url_branches)) | 108 | layerindex.load_layerindex("%s%s" % (self.apiurl, url_branches)) |