~mabac/svammel/bug-754727

« back to all changes in this revision

Viewing changes to data_parsing.py

  • Committer: Mattias Backman
  • Date: 2011-03-18 10:14:36 UTC
  • Revision ID: mattias.backman@linaro.org-20110318101436-f7oaahpy9lt0l73b
Remove unused series parameter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        return self.logs.get(arch)
75
75
 
76
76
 
77
 
def fetch_pkg_list(archives, series):
 
77
def fetch_pkg_list(archives):
78
78
    all_spph = dict()
79
79
    for archive, archive_name in archives:
80
80
        print_message("The following packages have failed to build " \
165
165
 
166
166
    print_message("Will be getting builds from archives " + ", ".join(
167
167
            name for (archive, name) in archives))
168
 
    spph_list = fetch_pkg_list(archives, series)
 
168
    spph_list = fetch_pkg_list(archives)
169
169
    return filter_spph(spph_list, fail_platform, ok_platforms)