# HG changeset patch # User Goffi # Date 1413037707 -7200 # Node ID 2a4e071633f7c1abdffd149a0e0b5bc683e61f41 # Parent fb81aeccde8bb0df56f08197a6ddf07397522236 server side (twisted plugin): fixed bad use of default value in getConfig diff -r fb81aeccde8b -r 2a4e071633f7 src/twisted/plugins/libervia_server.py --- a/src/twisted/plugins/libervia_server.py Fri Oct 10 16:45:53 2014 +0200 +++ b/src/twisted/plugins/libervia_server.py Sat Oct 11 16:28:27 2014 +0200 @@ -110,7 +110,7 @@ for param in self.optParameters + OPT_PARAMETERS_CFG: name = param[0] try: - value = getConfig(config, 'libervia', name) + value = getConfig(config, 'libervia', name, Exception) try: param[2] = param[4](value) except IndexError: # the coerce method is optional