minor change

This commit is contained in:
Abhinav Sarkar 2008-08-17 18:45:27 +00:00
parent 4646a6cac0
commit 73c2a4b7ce
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class Artist(LastfmBase):
@property
def similar(self):
"""artists similar to this artist"""
if self.__similar is None:
if self.__similar is None or len(self.__similar) < 6:
return self.getSimilar()
return self.__similar