# HG changeset patch # User Goffi # Date 1448297423 -3600 # Node ID 5c1d6efd693609c57a461eb24bc96a088fbf527e # Parent b08b828a87c980276630010239fddbbfb9ac63a6 core: fixed getStringParamA diff -r b08b828a87c9 -r 5c1d6efd6936 src/memory/params.py --- a/src/memory/params.py Mon Nov 23 16:21:32 2015 +0100 +++ b/src/memory/params.py Mon Nov 23 17:50:23 2015 +0100 @@ -443,7 +443,7 @@ def getStringParamA(self, name, category, attr="value", profile_key=C.PROF_KEY_NONE): """ Same as getParamA but for bridge: convert non string value to string """ - return self.__type_to_string(self.getParamA(name, category, attr, profile_key)) + return self.__type_to_string(self.getParamA(name, category, attr, profile_key=profile_key)) def getParamA(self, name, category, attr="value", use_default=True, profile_key=C.PROF_KEY_NONE): """Helper method to get a specific attribute.