Lines Matching refs:labels
15 # project. You can optionally provide a list of labels that apply to
59 def upload(file, project_name, user_name, password, summary, labels=None):
69 labels: an optional list of label strings with which to tag the file.
84 if labels is not None:
85 form_fields.extend([('label', l.strip()) for l in labels])
155 def upload_find_auth(file_path, project_name, summary, labels=None,
159 file_path, project_name, summary, and labels are passed as-is to upload.
165 labels: an optional list of label strings with which to tag the file.
195 summary, labels)
220 parser.add_option('-l', '--labels', dest='labels',
221 help='An optional list of comma-separated labels to attach '
237 if options.labels:
238 labels = options.labels.split(',')
240 labels = None
243 options.summary, labels,