summaryrefslogtreecommitdiff
path: root/taskapp/views/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskapp/views/user.py')
-rw-r--r--taskapp/views/user.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/taskapp/views/user.py b/taskapp/views/user.py
index 8746214..7fa86be 100644
--- a/taskapp/views/user.py
+++ b/taskapp/views/user.py
@@ -65,8 +65,6 @@ def view_my_profile(request,uid=None):
@login_required
def edit_my_profile(request):
""" enables the user to edit his/her user profile """
- if str(request.user) == 'AnonymousUser':
- return show_msg('Please register yourself to activate the functionality')
if request.method == 'POST':
form = UserProfileEditForm(request.POST)
# if not form.is_valid():