diff options
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index c6c69c30ea..087f72fc56 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -240,7 +240,7 @@ class BBCooker: | |||
240 | f.write(total) | 240 | f.write(total) |
241 | 241 | ||
242 | #add to history | 242 | #add to history |
243 | loginfo = {"op":append, "file":default_file, "line":total.count("\n")} | 243 | loginfo = {"op":"append", "file":default_file, "line":total.count("\n")} |
244 | self.data.appendVar(var, val, **loginfo) | 244 | self.data.appendVar(var, val, **loginfo) |
245 | 245 | ||
246 | def saveConfigurationVar(self, var, val, default_file, op): | 246 | def saveConfigurationVar(self, var, val, default_file, op): |
@@ -309,7 +309,7 @@ class BBCooker: | |||
309 | f.write(total) | 309 | f.write(total) |
310 | 310 | ||
311 | #add to history | 311 | #add to history |
312 | loginfo = {"op":set, "file":default_file, "line":total.count("\n")} | 312 | loginfo = {"op":"set", "file":default_file, "line":total.count("\n")} |
313 | self.data.setVar(var, val, **loginfo) | 313 | self.data.setVar(var, val, **loginfo) |
314 | 314 | ||
315 | def removeConfigurationVar(self, var): | 315 | def removeConfigurationVar(self, var): |