Fix call to local_site_reverse in bugs column
Review Request #8244 — Created June 14, 2016 and submitted — Latest diff uploaded
The
BugsColumn
was callinglocal_site_reverse
withargs
as a tuple
instead of a list, which would cause an exception when the repository
had a bug tracker configured. This has been corrected by updating the
calling point to use a list instead of a tuple and inside the
local_site_reverse
to castargs
to a list before concatenation.The parameters of
local_site_reverse
have also been documented.
- Ran unit tests.
- Viewed the dashboard with a review request filed against a repository
with a bug tracker. Without this fix applied, the exception occured;
with it applied, it did not.