def setup_robomaker_settings()

in ws_setup.py [0:0]


    def setup_robomaker_settings(self):
        log("setup roboMakerSettings.json..")

        try:
            file_name_template = "templates/roboMakerSettings.temp" 
            file_name_output = "../roboMakerSettings.json" 
            with open(file_name_template) as f:
                lines = f.read()

            for item in self.settings:
                value = str(self.settings[item])
                value = value.replace("'", "\"")
                lines = lines.replace("<{}>".format(item), value)

            with open(file_name_output, mode="w") as f:
                f.write(lines)        
        except Exception as e:
            errlog("Exception : %s" % str(e))
            return None

        return True