From: Finn B. <bc...@us...> - 2000-12-05 19:29:23
|
Update of /cvsroot/jython/jython/Tools/jythonc In directory slayer.i.sourceforge.net:/tmp/cvs-serv16655 Modified Files: depend.py Log Message: ResourceEntry.getZipName(): Store the resource name without the leading slash. Index: depend.py =================================================================== RCS file: /cvsroot/jython/jython/Tools/jythonc/depend.py,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** depend.py 2000/12/04 21:43:18 2.5 --- depend.py 2000/12/05 19:29:20 2.6 *************** *** 149,153 **** def getZipName(self): ! return self.name --- 149,153 ---- def getZipName(self): ! return self.name[1:] |