mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-28 09:11:38 +00:00
syncpackge: Fix the new flake8 E741. Closes: #963310
This commit is contained in:
parent
097eea7d5f
commit
4b3e9b8479
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -7,6 +7,8 @@ ubuntu-dev-tools (0.177) UNRELEASED; urgency=medium
|
|||||||
[ Mattia Rizzolo ]
|
[ Mattia Rizzolo ]
|
||||||
* ubuntu-build:
|
* ubuntu-build:
|
||||||
+ Add support for riscv64.
|
+ Add support for riscv64.
|
||||||
|
* syncpackge:
|
||||||
|
+ Fix the new flake8 E741. Closes: #963310
|
||||||
|
|
||||||
[ Bryce Harrington ]
|
[ Bryce Harrington ]
|
||||||
* update-maintainer:
|
* update-maintainer:
|
||||||
|
@ -76,7 +76,7 @@ def add_fixed_bugs(changes, bugs):
|
|||||||
'''Add additional Launchpad bugs to the list of fixed bugs in changes
|
'''Add additional Launchpad bugs to the list of fixed bugs in changes
|
||||||
file.'''
|
file.'''
|
||||||
|
|
||||||
changes = [l for l in changes.split("\n") if l.strip() != ""]
|
changes = [line for line in changes.split("\n") if line.strip() != ""]
|
||||||
# Remove duplicates
|
# Remove duplicates
|
||||||
bugs = set(str(bug) for bug in bugs)
|
bugs = set(str(bug) for bug in bugs)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user