Mercurial > public > mercurial-scm > hg-stable
diff mercurial/changelog.py @ 2142:8a1e2a9c7013
Replaced 0 with REVLOGV0 where this meaning is used.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 27 Apr 2006 21:16:46 +0200 |
parents | 5fefab118f7e |
children | 85f796baab10 |
line wrap: on
line diff
--- a/mercurial/changelog.py Thu Apr 27 21:03:07 2006 +0200 +++ b/mercurial/changelog.py Thu Apr 27 21:16:46 2006 +0200 @@ -11,7 +11,7 @@ demandload(globals(), "os time util") class changelog(revlog): - def __init__(self, opener, defversion=0): + def __init__(self, opener, defversion=REVLOGV0): revlog.__init__(self, opener, "00changelog.i", "00changelog.d", defversion)