Comment #1 on issue 2333 by ben.al...@gmail.com: Unhandled exception when adding a bug tracker ID
http://code.google.com/p/reviewboard/issues/detail?id=2333

Looking at the current code on github (c59e9abc0261e19e91e2024f55b964198f1cbbdc), it looks like the problem is in views.py in the 'if' statement beginning on line 383:

 if (name == "bugs_closed" and
     review_request.repository.bug_tracker):

Changing this to something like the following should avoid this exception:

 if (name == "bugs_closed" and
     review_request.repository and
     review_request.repository.bug_tracker):

This may not 100% solve the underlying problem (I haven't tried to build RB from source with this change), but it should at least avoid this particular exception.

--
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.

Reply via email to