commit: 164efc2db431e8052597c40cd17e3c38e24a7f8f
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 00:37:17 2020 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 00:42:15 2020 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=164efc2d
repoman/lib/repoman/scanner.py: Remove unneeded y_ebuild_continue var
Since commit 203bc84894d76f4e17e47b9373e84bebc217a246, this variable
has triggered a continue statement which no longer bypassed any
relevant code in the containing loop.
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
repoman/lib/repoman/scanner.py | 5 -----
1 file changed, 5 deletions(-)
diff --git a/repoman/lib/repoman/scanner.py b/repoman/lib/repoman/scanner.py
index f9663e013..2e5e5ef31 100644
--- a/repoman/lib/repoman/scanner.py
+++ b/repoman/lib/repoman/scanner.py
@@ -372,7 +372,6 @@ class Scanner:
for y_ebuild in ebuildlist:
self.reset_futures(dynamic_data)
dynamic_data['y_ebuild'] = y_ebuild
- y_ebuild_continue = False
# initialize per ebuild plugin checks here
# need to set it up for ==> self.modules_list or some
other ordered list
@@ -395,13 +394,9 @@ class Scanner:
# Do not try to do any
more QA checks on this package since missing
# metadata leads to
false positives for several checks, and false
# positives confuse
users.
- y_ebuild_continue = True
# logging.debug("\t>>>
Continuing")
break
- if y_ebuild_continue:
- continue
-
logging.debug("Finished ebuild plugin loop,
continuing...")
# Final checks