summaryrefslogtreecommitdiffstats
path: root/askbot/views/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/views/commands.py')
-rw-r--r--askbot/views/commands.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/askbot/views/commands.py b/askbot/views/commands.py
index 2801384f..8d16c35f 100644
--- a/askbot/views/commands.py
+++ b/askbot/views/commands.py
@@ -393,6 +393,7 @@ def get_tag_list(request):
def subscribe_for_tags(request):
"""process subscription of users by tags"""
+ #todo - use special separator to split tags
tag_names = request.REQUEST.get('tags','').strip().split()
pure_tag_names, wildcards = forms.clean_marked_tagnames(tag_names)
if request.user.is_authenticated():