From 3686ec336778dd144fbe063ededdde09b32d84cc Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Mon, 24 Dec 2007 04:52:50 -0800 Subject: Use the new GitosisRawConfigParser. --- gitosis/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gitosis/app.py') diff --git a/gitosis/app.py b/gitosis/app.py index 3037923..b2c44be 100644 --- a/gitosis/app.py +++ b/gitosis/app.py @@ -5,6 +5,7 @@ import logging import optparse import errno import ConfigParser +from gitosis import configutil # C0103 - 'log' is a special name # pylint: disable-msg=C0103 @@ -68,7 +69,7 @@ class App(object): def create_config(self, options): """Handle config file parsing.""" - cfg = ConfigParser.RawConfigParser() + cfg = configutil.GitosisRawConfigParser() return cfg def read_config(self, options, cfg): -- cgit v1.2.3