summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/views/commands.py2
-rw-r--r--askbot_requirements.txt1
2 files changed, 3 insertions, 0 deletions
diff --git a/askbot/views/commands.py b/askbot/views/commands.py
index 1b6b21e8..190dcf28 100644
--- a/askbot/views/commands.py
+++ b/askbot/views/commands.py
@@ -497,6 +497,8 @@ def get_tag_list(request):
tag_names = models.Tag.objects.filter(
deleted = False,
status = models.Tag.STATUS_ACCEPTED
+ ).exclude(
+ name__startswith='_internal_'
).values_list(
'name', flat = True
)
diff --git a/askbot_requirements.txt b/askbot_requirements.txt
index 1e851490..8771a7e6 100644
--- a/askbot_requirements.txt
+++ b/askbot_requirements.txt
@@ -20,3 +20,4 @@ python-openid
pystache==0.3.1
pytz
django-tinymce
+longerusername