aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model/forms.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2011-03-19 18:52:27 +0100
committerMarcin Kuzminski <marcin@python-works.com>2011-03-19 18:52:27 +0100
commit30232e1aff9fdc26c5e57d207e63d546ed84afbc (patch)
treef1cd68efd1fbf3f377fc2971d4a13219c0b79536 /rhodecode/model/forms.py
parent47b921db29fb8b1c50745dd53ea18820bbaa38e5 (diff)
Changes for repo groups
--HG-- branch : beta
Diffstat (limited to 'rhodecode/model/forms.py')
-rw-r--r--rhodecode/model/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/model/forms.py b/rhodecode/model/forms.py
index 1baa961c..5f9a3e66 100644
--- a/rhodecode/model/forms.py
+++ b/rhodecode/model/forms.py
@@ -458,7 +458,7 @@ def RepoForm(edit=False, old_data={}, supported_backends=BACKENDS.keys(),
repo_name = All(UnicodeString(strip=True, min=1, not_empty=True),
ValidRepoName(edit, old_data))
clone_uri = UnicodeString(strip=True, min=1, not_empty=False)
- repo_group = OneOf(repo_groups)
+ repo_group = OneOf(repo_groups, hideList=True)
repo_type = OneOf(supported_backends)
description = UnicodeString(strip=True, min=1, not_empty=True)
private = StringBoolean(if_missing=False)