Issue 66: Wrong Python variable assigment
http://code.google.com/p/django-wikiapp/issues/detail?id=66
New issue report by rhcarvalho:
What steps will reproduce the problem?
1. Setup wikiapp on a blank django project with all dependencies.
2. syncdb and runserver
3. Using the default templates, click "Create a new article" on the home
page
What is the expected output? What do you see instead?
I expected to be able to actually create a page, but got a Python Error
(TypeError 'bool' object is not iterable) instead.
What version of the product are you using? On what operating system?
SVN r176. Ubuntu 8.04
Please provide any additional information below.
As the traceback points, all one have to do is fix line 255 of
wiki/views.py.
Where it reads:
allow_read, allow_write = True
Should be:
allow_read = allow_write = True
Issue attributes:
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---