dereference problem

This commit is contained in:
2018-01-03 23:33:35 +01:00
parent bdbefb184a
commit 9f68d71a83
2 changed files with 7 additions and 5 deletions

View File

@ -1024,7 +1024,9 @@ class GroupConfig(_CommonConfig):
value,
nconfig_bag,
_commit=False)
except (PropertiesOptionError, ValueError, SlaveError) as err:
except PropertiesOptionError as err:
ret.append(PropertiesOptionError(str(err), err.proptype))
except (ValueError, SlaveError) as err:
ret.append(err)
if _commit:
self.cfgimpl_get_values()._p_.commit()