From 622d2ebbb14835cd4949dcb8a70b1191596e7cf9 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 11 Jan 2016 13:43:13 -0500 Subject: [PATCH] Remove unused storage path Fixes #1131 --- storage/basestorage.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/storage/basestorage.py b/storage/basestorage.py index fd9ca30e1..0877205b6 100644 --- a/storage/basestorage.py +++ b/storage/basestorage.py @@ -31,10 +31,6 @@ class StoragePaths(object): def blob_path(self, digest_str): return content_path(digest_str) - def image_file_trie_path(self, storage_uuid): - base_path = self._image_path(storage_uuid) - return '{0}files.trie'.format(base_path) - class BaseStorage(StoragePaths): def __init__(self):