diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index 59d10d46..e0836ccc 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -37,7 +37,7 @@ with open(sys.argv[1]) as fd: try: for pkg in (manifest['packages']['binary'] + manifest['packages']['source']): pkgname = pkg['package'] - if not pkgname in seen: + if pkgname not in seen: print(pkgname, end='|') seen[pkgname] = True except Exception as exc: |