You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the following traceback when I am trying to access notices feeds page:
Traceback:
File "/home/rtnpro/.virtualenvs/test/lib/python2.7/site-packages/Django-1.3.1-py2.7.egg/django/core/handlers/base.py" in get_response
I think it is. Line 214 in initializes an instance of notification.feeds.NoticeUserFeed, which inherits from notification.feeds.BaseNoticeFeed, and this from notification.atomformat.Feed. The new instance is created without arguments.
instance = f() # f is really NoticeUserFeed
The class Feed in atomformat.py is expecting three arguments (which, in fact, are not used):
def __init__(self, slug, feed_url):
# @@@ slug and feed_url are not used yet
pass
I think that a solution could be replacing this init with this:
Hi,
I am getting the following traceback when I am trying to access notices feeds page:
Traceback:
File "/home/rtnpro/.virtualenvs/test/lib/python2.7/site-packages/Django-1.3.1-py2.7.egg/django/core/handlers/base.py" in get_response
Exception Type: TypeError at /notices/feed/
Exception Value: init() takes exactly 3 arguments (1 given)
A more detailed traceback can be found at http://pastebin.com/AyRdQRWD. Is this really a bug?
Thanks
The text was updated successfully, but these errors were encountered: