aboutsummaryrefslogtreecommitdiff
path: root/budget/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'budget/web.py')
-rw-r--r--budget/web.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/budget/web.py b/budget/web.py
index c69189e..4724baa 100644
--- a/budget/web.py
+++ b/budget/web.py
@@ -179,6 +179,7 @@ def add_member():
if person:
person[0].activated = True
db.session.commit()
+ flash("%s is part of this project again" % person[0].name)
return redirect(url_for("list_bills"))
db.session.add(Person(name=form.name.data, project=g.project))