From c4933c220c70bd4824526bd7592f37bbd8bbe201 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 13 2015 16:30:46 +0000 Subject: Fix the information message when adding an user to a project --- diff --git a/progit/lib.py b/progit/lib.py index 7efbe3b..7e3a1c6 100644 --- a/progit/lib.py +++ b/progit/lib.py @@ -339,7 +339,7 @@ def add_user_to_project(session, project, user): # Make sure we won't have SQLAlchemy error before we create the repo session.flush() - return 'Comment added' + return 'User added' def add_pull_request_comment(session, request, commit, row, comment, user):