aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/controllers
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-01-19 19:42:37 +0100
committerMarcin Kuzminski <marcin@python-works.com>2013-01-19 19:42:37 +0100
commit64548fb6e54a9fcdf853cc462a1f8deba29bf24f (patch)
treefd6cc8d55885131627fcc71dab273e6de06c06aa /rhodecode/controllers
parent8d7e3b2efdaac9d16547b3e4b02767eb6f63ef91 (diff)
set the status of changesets initially on pull request, and make sure we care of version collisions.
Fixes issues #690 and #587 --HG-- branch : beta
Diffstat (limited to 'rhodecode/controllers')
-rw-r--r--rhodecode/controllers/pullrequests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rhodecode/controllers/pullrequests.py b/rhodecode/controllers/pullrequests.py
index fa08b632..368d06a6 100644
--- a/rhodecode/controllers/pullrequests.py
+++ b/rhodecode/controllers/pullrequests.py
@@ -224,6 +224,7 @@ class PullrequestsController(BaseRepoController):
h.flash(_('Successfully opened new pull request'),
category='success')
except Exception:
+ raise
h.flash(_('Error occurred during sending pull request'),
category='error')
log.error(traceback.format_exc())