From: <Mat...@i2...> - 2001-10-29 21:06:37
|
On 10/27/2001 10:03:47 PM "Robert W. Bill" wrote: > > Wait for a patch <g> > Did a little digging - I think its a one line fix, and this fix does work for me, but not sure if it might break something else...? I'm not sure how patches should be generated, so here is what I did. In jython/org/python/core/SyspathArchive.java, change makeEntry from: private String makeEntry(String entry) { String archive = super.toString(); int idx = archive.indexOf('!'); if (idx < 0) { return entry; } String folder = archive.substring(idx+1); return folder + "/" + entry; } To: private String makeEntry(String entry) { String archive = super.toString(); int idx = archive.indexOf('!'); if (idx < 0) { return entry; } String folder = archive.substring(idx+1).replace('!', '/'); return folder + "/" + entry; } |