diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-20 14:17:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-21 21:00:35 +0100 |
commit | cbeda8ee3bbde0fe7d1317d7d1de2bf46a9a5bee (patch) | |
tree | cdcda0c80aba1ade7bc2c3e7f1d37c598243fdd6 | |
parent | 6d1d9f3d78f6bc2af00307262d65fc4b94a334d0 (diff) | |
download | poky-cbeda8ee3bbde0fe7d1317d7d1de2bf46a9a5bee.tar.gz |
bitbake: buildinfohelper: Drop unused variables
(Bitbake rev: d720dfa40620e64a557edef527148d58fcb1d858)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index c4ca267783..129bb329c3 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/lib/bb/ui/buildinfohelper.py | |||
@@ -496,7 +496,7 @@ class ORMWrapper(object): | |||
496 | if not parent_path: | 496 | if not parent_path: |
497 | parent_path = "/" | 497 | parent_path = "/" |
498 | parent_obj = self._cached_get(Target_File, target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) | 498 | parent_obj = self._cached_get(Target_File, target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) |
499 | tf_obj = Target_File.objects.create( | 499 | Target_File.objects.create( |
500 | target = target_obj, | 500 | target = target_obj, |
501 | path = path, | 501 | path = path, |
502 | size = size, | 502 | size = size, |
@@ -561,7 +561,7 @@ class ORMWrapper(object): | |||
561 | 561 | ||
562 | parent_obj = Target_File.objects.get(target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) | 562 | parent_obj = Target_File.objects.get(target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) |
563 | 563 | ||
564 | tf_obj = Target_File.objects.create( | 564 | Target_File.objects.create( |
565 | target = target_obj, | 565 | target = target_obj, |
566 | path = path, | 566 | path = path, |
567 | size = size, | 567 | size = size, |