X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/11ad66c29764521f87f0dd399a1e592147c7af36..HEAD:/keys/tripe-keys.in diff --git a/keys/tripe-keys.in b/keys/tripe-keys.in index 593f1423..4ec89e90 100644 --- a/keys/tripe-keys.in +++ b/keys/tripe-keys.in @@ -166,7 +166,7 @@ def run(args): SYS.stdout.flush() rc = OS.spawnvp(OS.P_WAIT, args[0], args) if rc != 0: - raise SubprocessError, rc + raise SubprocessError(rc) def hexhyphens(bytes): """ @@ -217,7 +217,7 @@ def conf_read(f): if line[-1] == '\n': line = line[:-1] match = rx_keyval.match(line) if not match: - raise ConfigFileError, "%s:%d: bad line `%s'" % (f, lno, line) + raise ConfigFileError("%s:%d: bad line `%s'" % (f, lno, line)) k, v = match.groups() conf[k] = conf_subst(v) @@ -489,7 +489,7 @@ def cmd_update(args): ## Verify the signature want = C.bytes(rx_nonalpha.sub('', conf['hk-master'])) got = fingerprint('repos/master.pub', 'master-%d' % seq) - if want != got: raise VerifyError + if want != got: raise VerifyError() run('''catsign -krepos/master.pub verify -avC -kmaster-%d -t${sig-fresh} tripe-keys.sig tripe-keys.tar.gz''' % seq)