diff -r 1b5c38e9d7aa -r b11a2fb59cf5 mercurial/filelog.py --- a/mercurial/filelog.py Thu Mar 22 19:12:03 2007 -0500 +++ b/mercurial/filelog.py Thu Mar 22 19:52:38 2007 -0500 @@ -9,10 +9,9 @@ import os class filelog(revlog): - def __init__(self, opener, path, defversion=REVLOG_DEFAULT_VERSION): + def __init__(self, opener, path): revlog.__init__(self, opener, - "/".join(("data", self.encodedir(path + ".i"))), - defversion) + "/".join(("data", self.encodedir(path + ".i")))) # This avoids a collision between a file named foo and a dir named # foo.i or foo.d