Change direct accesses to an_uri.storage_index to calls to .get_storage_index() (fixes #948)

This commit is contained in:
david-sarah
2010-02-21 18:45:04 -08:00
parent 6a7feea455
commit 973f0afdd3
17 changed files with 52 additions and 52 deletions

View File

@ -346,7 +346,7 @@ class DirectoryNode:
return self._uri
def get_storage_index(self):
return self._uri._filenode_uri.storage_index
return self._uri.get_storage_index()
def check(self, monitor, verify=False, add_lease=False):
"""Perform a file check. See IChecker.check for details."""