From bec46cc141eaa139840a4ad3f15c47549b3ed432 Mon Sep 17 00:00:00 2001 From: Kyle Stone Date: Tue, 28 Jan 2020 14:03:02 -0500 Subject: Fix expected/obtained hashes --- ghwt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghwt.py b/ghwt.py index 4e1c9b436..7c2a6d16f 100755 --- a/ghwt.py +++ b/ghwt.py @@ -53,8 +53,8 @@ def unpack(sproj, branch, outdir): should = config['wrap-file']['source_hash'] if dig != should: print('Incorrect hash on download.') - print(' expected:', dig) - print(' obtained:', should) + print(' expected:', should) + print(' obtained:', dig) return 1 spdir = os.path.dirname(outdir) ofilename = os.path.join(spdir, config['wrap-file']['source_filename']) -- cgit v1.2.3