summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-04-03 14:44:02 -0500
committerDan McGee <dan@archlinux.org>2012-04-03 14:44:16 -0500
commitb1a9818ddee0e3d0cd4d47b6dbf1c1409992227b (patch)
tree4e3abeabc346e40e514a053a620a5db898e7425e /main
parentd9e5cbf546536e4a14e7f3cb591631515112a205 (diff)
downloadarchweb-b1a9818ddee0e3d0cd4d47b6dbf1c1409992227b.tar.gz
archweb-b1a9818ddee0e3d0cd4d47b6dbf1c1409992227b.zip
Include category when linking to bug reports
Also change the default category to something legit. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main')
-rw-r--r--main/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py
index 34cbcd17..db926dda 100644
--- a/main/models.py
+++ b/main/models.py
@@ -115,7 +115,7 @@ class Repo(models.Model):
help_text="Is this repo meant for package staging?")
bugs_project = models.SmallIntegerField(default=1,
help_text="Flyspray project ID for this repository.")
- bugs_category = models.SmallIntegerField(default=0,
+ bugs_category = models.SmallIntegerField(default=2,
help_text="Flyspray category ID for this repository.")
svn_root = models.CharField(max_length=64,
help_text="SVN root (e.g. path) for this repository.")