From: <fwi...@us...> - 2008-11-14 00:28:51
|
Revision: 5577 http://jython.svn.sourceforge.net/jython/?rev=5577&view=rev Author: fwierzbicki Date: 2008-11-14 00:28:42 +0000 (Fri, 14 Nov 2008) Log Message: ----------- Thanks to Tor Norbye for this bug fix. This was also found via NetBeans. Modified Paths: -------------- trunk/jython/Lib/posixpath.py Modified: trunk/jython/Lib/posixpath.py =================================================================== --- trunk/jython/Lib/posixpath.py 2008-11-14 00:02:12 UTC (rev 5576) +++ trunk/jython/Lib/posixpath.py 2008-11-14 00:28:42 UTC (rev 5577) @@ -241,7 +241,7 @@ s2 = os.fstat(fp2) return samestat(s1, s2) - __all__append("sameopenfile") + __all__.append("sameopenfile") if os._native_posix: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |