The past participle of split is "split", not "splitted"

This commit is contained in:
Laurent Bachelier 2012-02-02 14:26:10 +01:00
commit a19b1be338
7 changed files with 13 additions and 13 deletions

View file

@ -74,8 +74,8 @@ class Transfer(CapBaseObject):
self.add_field('recipient', (int, long, basestring))
class ICapBank(ICapCollection):
def iter_resources(self, splited_path):
if len(splited_path) > 0:
def iter_resources(self, split_path):
if len(split_path) > 0:
raise CollectionNotFound()
return self.iter_accounts()

View file

@ -60,5 +60,5 @@ class Ressource(object):
pass
class ICapCollection(IBaseCap):
def iter_resources(self, splited_path):
def iter_resources(self, split_path):
raise NotImplementedError()