diff mercurial/statichttprepo.py @ 4258:b11a2fb59cf5

revlog: simplify revlog version handling - pass the default version as an attribute on the opener - eliminate config option mess
author Matt Mackall <mpm@selenic.com>
date Thu, 22 Mar 2007 19:52:38 -0500
parents 6b4127c7d52a
children 63b9d2deed48
line wrap: on
line diff
--- a/mercurial/statichttprepo.py	Thu Mar 22 19:12:03 2007 -0500
+++ b/mercurial/statichttprepo.py	Thu Mar 22 19:52:38 2007 -0500
@@ -32,7 +32,6 @@
     def __init__(self, ui, path):
         self._url = path
         self.ui = ui
-        self.revlogversion = 0
 
         self.path = (path + "/.hg")
         self.opener = opener(self.path)