Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix F402: Import module from line n shadowed by loop variable
· b56af53b
Bastian Blank
authored
May 19, 2018
and
Joerg Jaspert
committed
May 19, 2018
b56af53b
Merge branch 'fix-F402' into 'master'
· 1508108e
Joerg Jaspert
authored
May 19, 2018
Fix F402: Import module from line n shadowed by loop variable See merge request
!50
1508108e
Show whitespace changes
Inline
Side-by-side
dak/new_security_install.py
View file @
1508108e
...
...
@@ -108,8 +108,8 @@ def _do_Approve():
# 1. Install accepted packages
print
"
Installing accepted packages into security archive
"
for
queue
in
(
"
embargoed
"
,):
spawn
(
"
dak process-policy {0}
"
.
format
(
queue
))
for
queue
_name
in
(
"
embargoed
"
,):
spawn
(
"
dak process-policy {0}
"
.
format
(
queue
_name
))
# 2. Run all the steps that are needed to publish the changed archive
print
"
Doing loadsa stuff in the archive, will take time, please be patient
"
...
...
setup.cfg
View file @
1508108e
...
...
@@ -43,7 +43,6 @@ ignore =
E741,
E999,
F401,
F402,
F403,
F405,
F811,
...
...