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 275951 Details for
Bug 248930
wish: add install DVD repository
[?]
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]
allow spaces in yum baseurl
config.py.patch (text/plain), 734 bytes, created by
Henry Kroll
on 2007-12-03 18:14:19 UTC
(
hide
)
Description:
allow spaces in yum baseurl
Filename:
MIME Type:
Creator:
Henry Kroll
Created:
2007-12-03 18:14:19 UTC
Size:
734 bytes
patch
obsolete
>--- /usr/lib/python2.5/site-packages/yum/config.py.orig 2007-12-03 15:22:22.000000000 -0500 >+++ /usr/lib/python2.5/site-packages/yum/config.py 2007-12-03 15:21:28.000000000 -0500 >@@ -146,10 +146,14 @@ > """ > # we need to allow for the '\n[whitespace]' continuation - easier > # to sub the \n with a space and then read the lines >+ # first replace the spaces with something else: >+ s=s.replace(' ','#') > s = s.replace('\n', ' ') > s = s.replace(',', ' ') >- s = s.split() >- return s >+ j = s.split() >+ for b in range(0,len(j)): >+ j[b]=j[b].replace('#',' ') >+ return j > > def tostring(self, value): > return '\n '.join(value)
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 248930
:
160240
|
160241
| 275951