Home | History | Annotate | Download | only in contrib

Lines Matching refs:prs

151 def get_pr_titles(prs):
153 for idx, pr in enumerate(prs):
158 prs[idx] = 'PR %s/%s' % (bugs[0]['component'], pr_id)
159 out = '%s - %s\n' % (prs[idx], bugs[0]['summary'])
186 global prs
187 prs = []
198 if apr not in prs:
199 prs.append(apr)
222 if pr not in prs:
223 prs.append(pr)
229 if dr not in prs:
230 prs.append(dr)
242 if pr not in this_file_prs and pr2 not in prs:
243 prs.append(pr2)
246 out += get_pr_titles(prs)
249 if prs:
252 for pr in prs:
373 help='Add the specified PRs (comma separated)')
377 help='Download title of mentioned PRs')
431 if len(prs) == 1:
433 m = prnum_regex.match(prs[0])