Fix method name

Fix name of method call (getEndindex should be get_end_index).

Change-Id: Id2cde9a0f5cb1c05dc0601f5322b94d96dd7a9ce
This commit is contained in:
Roger Luethi 2016-12-29 18:33:42 +01:00
parent 54525dccdb
commit 599376fc69
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class BlockIndex(object):
def get_block(self, index):
'''Returns the value of the block from the start and the end index.'''
return (self.get_start_index(index), self.getEndindex(index))
return (self.get_start_index(index), self.get_end_index(index))
def get_start_index(self, block):
'''Returns the index of the given block from the start index.'''