Lines Matching full: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): argument
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, argument
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.
187 summary, labels)
212 parser.add_option('-l', '--labels', dest='labels',
213 help='An optional list of comma-separated labels to attach '
229 if options.labels:
230 labels = options.labels.split(',')
232 labels = None
235 options.summary, labels,