Fix month computation.
This commit is contained in:
parent
5ff4aaff1b
commit
a4a296f36b
3 changed files with 16 additions and 10 deletions
|
@ -76,6 +76,7 @@
|
|||
(-mi (id) "Specify member by id" (-member-id- (string->number id)))
|
||||
(-mn (nick) "Specify member by nick" (-member-nick- nick))
|
||||
(-pi () "Print information" (-action- 'print-info))
|
||||
(-stats () "Get stats for all months" (-action- 'print-stats))
|
||||
)
|
||||
|
||||
;; Load the members database (required for everything anyway)
|
||||
|
@ -98,4 +99,7 @@
|
|||
(if mr
|
||||
(print-member-record-info mr)
|
||||
(print-members-base-info MB))
|
||||
(newline)))
|
||||
(newline))
|
||||
((print-stats)
|
||||
(print (members-base-stats MB)))
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue