[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/scripts/fstail.py the main
method call needs to be lowercase,
otherwise the call will raise a TypeError: Main() takes no arguments
(2 given)
Jodok Batlogg
jodok.batlogg at lovelysystems.com
Mon Dec 25 15:03:20 EST 2006
Log message for revision 71650:
the main method call needs to be lowercase, otherwise the call will raise a TypeError: Main() takes no arguments (2 given)
Changed:
U ZODB/trunk/src/ZODB/scripts/fstail.py
-=-
Modified: ZODB/trunk/src/ZODB/scripts/fstail.py
===================================================================
--- ZODB/trunk/src/ZODB/scripts/fstail.py 2006-12-23 14:17:45 UTC (rev 71649)
+++ ZODB/trunk/src/ZODB/scripts/fstail.py 2006-12-25 20:03:18 UTC (rev 71650)
@@ -46,7 +46,7 @@
for k, v in opts:
if k == '-n':
ntxn = int(v)
- Main(path, ntxn)
+ main(path, ntxn)
if __name__ == "__main__":
More information about the Zodb-checkins
mailing list