Fix Fimfarchive fetcher not being closable

This commit is contained in:
Joakim Soderlund 2019-03-17 16:17:28 +01:00
parent 9dd10b943c
commit 1accc8c750

View file

@ -141,7 +141,7 @@ class MemoryIndex(Index):
return len(self.data)
def close(self):
self.data.close()
self.data.clear()
class FimfarchiveFetcher(Fetcher):