[Zodb-checkins] CVS: StandaloneZODB/zLOG/tests - testzLog.py:1.3
Jeremy Hylton
jeremy@zope.com
Mon, 8 Oct 2001 18:47:37 -0400
Update of /cvs-repository/StandaloneZODB/zLOG/tests
In directory cvs.zope.org:/tmp/cvs-serv12333
Modified Files:
testzLog.py
Log Message:
Oops: local var is f not file.
=== StandaloneZODB/zLOG/tests/testzLog.py 1.2 => 1.3 ===
line = f.readline()
while line != "------\n":
- line = file.readline()
+ line = f.readline()
line = f.readline().strip()
_time, rest = line.split(" ", 1)