From e03e845ddc3323a972a4f96a235bc87996733e34 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 20 2014 08:16:21 +0000 Subject: Fix url to avoid conflict b/w forking a project and viewing a fork --- diff --git a/progit/fork.py b/progit/fork.py index 828e641..6c2bf99 100644 --- a/progit/fork.py +++ b/progit/fork.py @@ -25,8 +25,8 @@ from progit import APP, SESSION, LOG ### Application -@APP.route('/fork/') -@APP.route('/fork//') +@APP.route('/do_fork/') +@APP.route('/do_fork//') def fork_project(repo, username=None): """ Fork the project specified into the user's namespace """