From 83fd0ff75b663a4a90951ec1883a93bae0287fd6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 20 2015 08:14:12 +0000 Subject: Specify a default location for the requests git repo in the configuration file --- diff --git a/progit/default_config.py b/progit/default_config.py index 526e6a6..fbae027 100644 --- a/progit/default_config.py +++ b/progit/default_config.py @@ -69,6 +69,13 @@ TICKETS_FOLDER = os.path.join( 'tickets' ) +# Folder containing the pull-requests repos +REQUESTS_FOLDER = os.path.join( + os.path.abspath(os.path.dirname(__file__)), + '..', + 'requests' +) + # Configuration file for gitolite GITOLITE_CONFIG = os.path.join( os.path.abspath(os.path.dirname(__file__)),