Dolda2000 GitWeb
/
utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cef04a
)
acmecert: Fixed order invocation error.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Tue, 9 Nov 2021 21:03:01 +0000
(22:03 +0100)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Tue, 9 Nov 2021 21:03:01 +0000
(22:03 +0100)
acmecert
patch
|
blob
|
blame
|
history
diff --git
a/acmecert
b/acmecert
index
f10f4a3
..
dfc5ae3
100755
(executable)
--- a/
acmecert
+++ b/
acmecert
@@
-330,7
+330,7
@@
commands["acct-info"] = cmd_acct_info
def cmd_order(args):
"usage: acmecert order ACCOUNT-FILE CSR [OUTPUT-FILE]"
- if len(args) <
4
: raise usageerr()
+ if len(args) <
3
: raise usageerr()
with maybeopen(args[1], "r") as fp:
acct = account.read(fp)
with maybeopen(args[2], "r") as fp: