diff mercurial/store.py @ 7280:810ca383da9c

remove unused variables
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Tue, 28 Oct 2008 19:25:26 +0100
parents db6fbb785800
children e54cf540c6ca
line wrap: on
line diff
--- a/mercurial/store.py	Tue Oct 28 19:07:14 2008 +0100
+++ b/mercurial/store.py	Tue Oct 28 19:25:26 2008 +0100
@@ -154,7 +154,6 @@
         '''yields (unencoded, encoded, size)'''
         path = self.pathjoiner(self.path, relpath)
         striplen = len(self.path) + len(os.sep)
-        prefix = path[striplen:]
         l = []
         if os.path.isdir(path):
             visit = [path]