[Zodb-checkins] CVS: ZODB3/Tools - fstail.py:1.2

Jeremy Hylton jeremy@zope.com
Mon, 18 Nov 2002 16:04:27 -0500


Update of /cvs-repository/ZODB3/Tools
In directory cvs.zope.org:/tmp/cvs-serv6897

Modified Files:
	fstail.py 
Log Message:
Change output format.

Indentation of the 2nd line is a lose, because the 2nd line can be
long.  Instead put a blank line after a record.



=== ZODB3/Tools/fstail.py 1.1 => 1.2 ===
--- ZODB3/Tools/fstail.py:1.1	Mon Nov 18 15:45:48 2002
+++ ZODB3/Tools/fstail.py	Mon Nov 18 16:04:26 2002
@@ -32,8 +32,9 @@
         th.read_meta()
         print "%s: hash=%s" % (th.get_timestamp(),
                                binascii.hexlify(hash))
-        print " " * l, ("user=%r description=%r length=%d"
-                        % (th.user, th.descr, th.length))
+        print ("user=%r description=%r length=%d"
+               % (th.user, th.descr, th.length))
+        print
         th = th.prev_txn()
         i -= 1