Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 586940 Details for
Bug 825370
Fault 53: 'v1 is not a valid parameter for the Bugzilla::Bug::match function.'
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
example script to query bugzilla
bz-query.py (text/plain), 637 bytes, created by
Jeff Bastian
on 2012-05-25 20:03:28 UTC
(
hide
)
Description:
example script to query bugzilla
Filename:
MIME Type:
Creator:
Jeff Bastian
Created:
2012-05-25 20:03:28 UTC
Size:
637 bytes
patch
obsolete
>#!/usr/bin/python -tt ># vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4 > >import bugzilla >import sys > >BZURL = 'https://bugzilla.redhat.com/xmlrpc.cgi' >BZ = bugzilla.RHBugzilla4(url=BZURL) > >bzusername="" >bzpassword="" > >if BZ.login(bzusername, bzpassword): > print "Logged into bugzilla" >else: > sys.exit(-1) > >query = dict() >query['bug_status'] = [ 'NEW', 'ASSIGNED' ] >query['product'] = [ 'Fedora' ] >query['f1'] = 'keywords' >query['o1'] = 'substring' >query['v1'] = 'Patch' >query['include_fields'] = [ 'bug_id', 'component', 'short_desc' ] > >results = BZ.query(query) > >for r in results: > print r.bug_id, r.component, r.short_desc
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 825370
: 586940 |
586941