Fix typo in FeedListDescriptor

Thanks @tehsphinx. Fixes #4.
master
pictuga 2015-02-20 17:41:14 +08:00
parent ef946c0712
commit 446dd9fb3f
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ class FeedListDescriptor(object):
def __set__(self, instance, value):
feedlist = self.__get__(instance)
[x.remove() for x in [x for x in f.items]]
[x.remove() for x in list(feedlist)]
[feedlist.append(x) for x in value]