aboutsummaryrefslogtreecommitdiffstats
path: root/beweb
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2006-02-03 15:17:59 -0500
committerAaron Bentley <abentley@panoramicfeedback.com>2006-02-03 15:17:59 -0500
commitd4b7a0a07db702a80c279b5c92a999cd91dfc1bc (patch)
tree61a6db543de3db754b99c310685203b3cc5326bb /beweb
parent979fe49abcd905ac9db403e665ea442376a061c3 (diff)
downloadbugseverywhere-d4b7a0a07db702a80c279b5c92a999cd91dfc1bc.tar.gz
Got commit basics working for bzr
Diffstat (limited to 'beweb')
-rw-r--r--beweb/beweb/controllers.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/beweb/beweb/controllers.py b/beweb/beweb/controllers.py
index cbd0816..9124116 100644
--- a/beweb/beweb/controllers.py
+++ b/beweb/beweb/controllers.py
@@ -93,6 +93,9 @@ class Bug(PrestHandler):
assigned = None
bug.assigned = assigned
bug.save()
+ bug.rcs.precommit(bug.path)
+ bug.rcs.commit(bug.path, "Auto-commit")
+ bug.rcs.postcommit(bug.path)
raise cherrypy.HTTPRedirect(bug_list_url(bug_data["project"]))
def instantiate(self, project, bug):