Skip to content
Snippets Groups Projects
Commit 631bbc4c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[scripts][changelog] Fix minor code issues

parent 4fa051ae
No related branches found
No related tags found
No related merge requests found
Pipeline #25707 failed
...@@ -91,8 +91,8 @@ def changelog(target, changelog, group, mode, since): ...@@ -91,8 +91,8 @@ def changelog(target, changelog, group, mode, since):
# reads package list or considers name to be a package name # reads package list or considers name to be a package name
if os.path.exists(target) and os.path.isfile(target): if os.path.exists(target) and os.path.isfile(target):
bdt.logger.info('Reading package names from file %s...', target) bdt.logger.info('Reading package names from file %s...', target)
with open(target, 'rb') as f: with open(target, 'rt') as f:
packages = [k.strip() for k in f.readlines() if k and not \ packages = [k.strip() for k in f.readlines() if k.strip() and not \
k.strip().startswith('#')] k.strip().startswith('#')]
else: else:
bdt.logger.info('Assuming %s is a package name (file does not ' \ bdt.logger.info('Assuming %s is a package name (file does not ' \
...@@ -106,7 +106,7 @@ def changelog(target, changelog, group, mode, since): ...@@ -106,7 +106,7 @@ def changelog(target, changelog, group, mode, since):
for package in packages: for package in packages:
if '/' not in package: if '/' not in package:
package = '/'.join(group, package) package = '/'.join((group, package))
# retrieves the gitlab package object # retrieves the gitlab package object
use_package = gl.projects.get(package) use_package = gl.projects.get(package)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment