From: Aaron Bentley Date: Tue, 17 Oct 2006 19:26:02 +0000 (-0400) Subject: Disable commit behavior because it's not reliable X-Git-Tag: 1.0.0~185^2~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a6468f21dbbcc40ec52061ba85288beaa98afb9d;p=be.git Disable commit behavior because it's not reliable --- diff --git a/Bugs-Everywhere-Web/beweb/controllers.py b/Bugs-Everywhere-Web/beweb/controllers.py index 4417a63..5f0046e 100644 --- a/Bugs-Everywhere-Web/beweb/controllers.py +++ b/Bugs-Everywhere-Web/beweb/controllers.py @@ -112,9 +112,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) +# 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):