summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_create_meta_pkg_sets.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh
index c8fdeba5..59d10d46 100755
--- a/bin/reproducible_create_meta_pkg_sets.sh
+++ b/bin/reproducible_create_meta_pkg_sets.sh
@@ -40,8 +40,8 @@ with open(sys.argv[1]) as fd:
if not pkgname in seen:
print(pkgname, end='|')
seen[pkgname] = True
- except:
- print("Warning: something went wrong while parsing the build manifest as YAML file.")
+ except Exception as exc:
+ print("Warning: something went wrong while parsing the build manifest as YAML file: {}".format(exc))
EOF
)