This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit f0818c9210105a079d0ae5856fcd35ca43c31b05 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Sep 14 11:36:44 2018 +0200 x2gobroker/config.py: Correctly reference RawConfigParser class. --- x2gobroker/config.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/x2gobroker/config.py b/x2gobroker/config.py index 66700f0..d20bc83 100644 --- a/x2gobroker/config.py +++ b/x2gobroker/config.py @@ -125,10 +125,10 @@ class X2GoBrokerConfigFile(object): """\ Stores a value for a given section and key. - This methods affects a ``RawConfigParser`` object held in - RAM. No configuration file is affected by this - method. To write the configuration to disk use - the L{write()} method. + This methods affects a :class:`configparser.RawConfigParser` + object held in RAM. No configuration file is affected by this + method. To write the configuration to disk use the L{write()} + method. :param section: the INI file section :type section: ``str`` @@ -149,10 +149,10 @@ class X2GoBrokerConfigFile(object): def _fill_defaults(self): """\ - Fills a ``RawConfigParser`` object with the default config file - values as pre-defined in Python X2GoBroker or. This RawConfigParser - object is held in RAM. No configuration file is affected by this - method. + Fills a :class:`configparser.RawConfigParser` object with the + default config file values as pre-defined in Python X2GoBroker + or. This RawConfigParser object is held in RAM. No configuration + file is affected by this method. """ for section, sectiondict in list(self.defaultValues.items()): -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git