From c62356ad7567cf7ba3ce82fffcf1beb89e3343a6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 30 2014 11:12:34 +0000 Subject: Add a default configuration for the folder containing the git repo for the tickets --- diff --git a/progit/default_config.py b/progit/default_config.py index 54dbc92..39a2579 100644 --- a/progit/default_config.py +++ b/progit/default_config.py @@ -52,6 +52,13 @@ DOCS_FOLDER = os.path.join( 'docs' ) +# Folder containing the tickets repos +TICKETS_FOLDER = os.path.join( + os.path.abspath(os.path.dirname(__file__)), + '..', + 'tickets' +) + # Configuration file for gitolite GITOLITE_CONFIG = os.path.join( os.path.abspath(os.path.dirname(__file__)),