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 666584 Details for
Bug 889150
[patch] python-bugzilla: traceback with certain arguments trying to split None
[?]
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.
[patch]
Patch to verify we are not splitting None
0001-Verify-we-are-not-trying-to-split-None.patch (text/plain), 730 bytes, created by
Stanislav Ochotnicky
on 2012-12-20 10:46:13 UTC
(
hide
)
Description:
Patch to verify we are not splitting None
Filename:
MIME Type:
Creator:
Stanislav Ochotnicky
Created:
2012-12-20 10:46:13 UTC
Size:
730 bytes
patch
obsolete
>From 13cf20a1c92b1310a179e9e18f878702bc6ef930 Mon Sep 17 00:00:00 2001 >From: Stanislav Ochotnicky <sochotnicky@redhat.com> >Date: Thu, 20 Dec 2012 11:40:36 +0100 >Subject: [PATCH] Verify we are not trying to split None > >--- > bin/bugzilla | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/bin/bugzilla b/bin/bugzilla >index 83040ba..dd996f4 100755 >--- a/bin/bugzilla >+++ b/bin/bugzilla >@@ -584,7 +584,8 @@ def main(): > optional=['cc', 'blocked', 'dependson'] > for a in optional: > i = getattr(opt,a) >- data[a] = i.split(',') >+ if i: >+ data[a] = i.split(',') > for a in required: > i = getattr(opt,a) > if i: >-- >1.8.0.2 >
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 889150
: 666584