diff options
author | Dan McGee <dan@archlinux.org> | 2012-04-03 14:44:02 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-03 14:44:16 -0500 |
commit | b1a9818ddee0e3d0cd4d47b6dbf1c1409992227b (patch) | |
tree | 4e3abeabc346e40e514a053a620a5db898e7425e /main/models.py | |
parent | d9e5cbf546536e4a14e7f3cb591631515112a205 (diff) |
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/models.py')
-rw-r--r-- | main/models.py | 2 |
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.") |