Message515

Author bab
Recipients
Date 2001-12-09.23:41:50
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Hi.  There's a simple typo in
org/python/core/PyFile.java.  A patch is
given below.

Thanks - Ben.

--- jython-2.1-beta1.orig/org/python/core/PyFile.java
+++ jython-2.1-beta1/org/python/core/PyFile.java
@@ -54,7 +54,7 @@
         public void close() throws java.io.IOException {
         }
         public void truncate(long position) throws java.io.IOException {
-            throw new java.io.IOException("file doens't support truncate");
+            throw new java.io.IOException("file doesn't support truncate");
         }

         public Object __tojava__(Class cls) throws IOException {

History
Date User Action Args
2008-02-20 17:16:58adminlinkissue490962 messages
2008-02-20 17:16:58admincreate