You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Change the current directory to a valid mbed program, set the current directory as an mbed program with \"mbed config root .\", or use the '--global' option to set global configuration."%program.path)
3287
3290
withcd(program.path):
3288
3291
ifunset:
3289
-
program.set_cfg(var, None)
3290
-
action('Unset default %s in program "%s"'% (name, program.name))
3292
+
ifprogram.set_cfg(var, None):
3293
+
action('Unset default %s in program "%s"'% (name, program.name))
3291
3294
elifvalue:
3292
-
program.set_cfg(var, value)
3293
-
action('%s now set as default %s in program "%s"'% (value, name, program.name))
3295
+
ifprogram.set_cfg(var, value):
3296
+
action('%s now set as default %s in program "%s"'% (value, name, program.name))
0 commit comments