From c59857b802884be68c70d4ef7541eb3607829789 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Thu, 7 May 2009 15:09:13 +0000 Subject: [PATCH] add config_file as a property to the Config class --- deluge/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deluge/config.py b/deluge/config.py index 09661d302..27b09ee93 100644 --- a/deluge/config.py +++ b/deluge/config.py @@ -294,6 +294,10 @@ class Config(object): except Exception, e: log.error("Error moving new config file: %s", e) return + + @property + def config_file(self): + return self.__config_file @prop def config():