You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/05/21 14:02:57 UTC

svn commit: r777124 - /incubator/kato/branches/experimental/PyJVMTI/kato/BinDump.py

Author: spoole
Date: Thu May 21 14:02:57 2009
New Revision: 777124

URL: http://svn.apache.org/viewvc?rev=777124&view=rev
Log:
updated pyjvmti dump to create dump with kato suffix.  This to match what the image factory can handle

Modified:
    incubator/kato/branches/experimental/PyJVMTI/kato/BinDump.py

Modified: incubator/kato/branches/experimental/PyJVMTI/kato/BinDump.py
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/PyJVMTI/kato/BinDump.py?rev=777124&r1=777123&r2=777124&view=diff
==============================================================================
--- incubator/kato/branches/experimental/PyJVMTI/kato/BinDump.py (original)
+++ incubator/kato/branches/experimental/PyJVMTI/kato/BinDump.py Thu May 21 14:02:57 2009
@@ -24,7 +24,7 @@
     output=None
       
     def open(self): 
-        self.output=open("kato.dump","wb")
+        self.output=open("dump.kato","wb")
         self.output.write("KATOJVMTI")
         header=struct.pack("!hhh",0,0,1)
         self.output.write(header)