
10 Jun
2016
10 Jun
'16
9:53 p.m.
When this was moved out of add(), it should have started using 'self.'
Signed-off-by: Joe Hershberger joe.hershberger@ni.com ---
Changes in v3: None Changes in v2: None
tools/moveconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/moveconfig.py b/tools/moveconfig.py index 4832b86..7d1e1ea 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -688,7 +688,7 @@ class Slot: """Run 'make <board>_defconfig' to create the .config file."""
cmd = list(self.make_cmd) - cmd.append(defconfig) + cmd.append(self.defconfig) self.ps = subprocess.Popen(cmd, stdout=self.devnull, stderr=subprocess.PIPE) self.state = STATE_DEFCONFIG
--
1.7.11.5