diff mercurial/changelog.py @ 4956:02b127749dc0

fix unused variables reported by pychecker
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Fri, 20 Jul 2007 09:31:32 +0200
parents 5e365008360f
children d1bee415406e
line wrap: on
line diff
--- a/mercurial/changelog.py	Thu Jul 19 18:39:51 2007 +0200
+++ b/mercurial/changelog.py	Fri Jul 20 09:31:32 2007 +0200
@@ -58,7 +58,6 @@
     def read(self, count=-1):
         '''only trick here is reads that span real file and data'''
         ret = ""
-        old_offset = self.offset
         if self.offset < self.size:
             s = self.fp.read(count)
             ret = s