Adnan Alam
Adnan Alam
I want to add some of my [Scrapy](https://scrapy.org/) based projects Wooey. As I can see only single script based project can be added in Wooey, so I want to know,...
**inc_view()** method for Blog Post isn't used in https://github.com/pinax/pinax-blog/blob/master/pinax/blog/views.py. So, blog post view doesn't work.
added missing parameter **request** in **thread_updates** function of **views.py**. https://github.com/pinax/pinax-forums/blob/master/pinax/forums/views.py
**request** parameter is missing in render function of **thread_updates in views.py** Change the code: **return render("pinax/forums/thread_updates.html", {"subscriptions": subscriptions})** to **return render(request, "pinax/forums/thread_updates.html", {"subscriptions": subscriptions})**