mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-18 22:11:30 +00:00
Make britney2/utils.py PEP-8 clean
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
5a38e00996
commit
bb699f7416
@ -156,7 +156,8 @@ def read_nuninst(filename, architectures):
|
|||||||
nuninst = {}
|
nuninst = {}
|
||||||
with open(filename, encoding='ascii') as f:
|
with open(filename, encoding='ascii') as f:
|
||||||
for r in f:
|
for r in f:
|
||||||
if ":" not in r: continue
|
if ":" not in r:
|
||||||
|
continue
|
||||||
arch, packages = r.strip().split(":", 1)
|
arch, packages = r.strip().split(":", 1)
|
||||||
if arch.split("+", 1)[0] in architectures:
|
if arch.split("+", 1)[0] in architectures:
|
||||||
nuninst[arch] = set(packages.split())
|
nuninst[arch] = set(packages.split())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user