changeset 6897 | faea0d27e38f |
parent 6896 | 40690d614ce6 |
child 6898 | 69aeaaaf6e07 |
--- a/mercurial/store.py Wed Aug 13 20:18:42 2008 -0500 +++ b/mercurial/store.py Wed Aug 13 20:18:43 2008 -0500 @@ -119,12 +119,6 @@ def join(self, f): return os.path.join(self.path, self.encodefn(f)) -def encodefn(requirements): - if 'store' not in requirements: - return lambda x: x - else: - return encodefilename - def store(requirements, path, opener): if 'store' not in requirements: return directstore(path, opener)