From d4d9914ec004a9ad1b767bc177d45af6694080be Mon Sep 17 00:00:00 2001 From: Bogdano Arendartchuk Date: Mon, 29 Jan 2007 16:44:02 +0000 Subject: Make ConfigParser forward args to allow the use of "raw" option. It will enable us to choose which sections should not allow ConfigParser's references. --- RepSys/ConfigParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RepSys/ConfigParser.py b/RepSys/ConfigParser.py index 0f219b9..c10b3a7 100644 --- a/RepSys/ConfigParser.py +++ b/RepSys/ConfigParser.py @@ -373,8 +373,8 @@ class Config: def set(self, section, option, value): return self._config.set(section, option, value) - def walk(self, section): - return self._config.walk(section) + def walk(self, section, *args, **kwargs): + return self._config.walk(section, *args, **kwargs) def get(self, section, option, default=None): try: -- cgit v1.2.1