projects
/
ttt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
creados los script ejecutables
[ttt.git]
/
show.py
1
#!/usr/bin/python
2
3
# Author: Daniel Garcia <dani@danigm.net>
4
# License: GPLv3
5
6
import sys
7
import ttt
8
9
if __name__ == '__main__':
10
args = sys.argv[1:]
11
if '-g' in args:
12
ttt.show_today_grouped()
13
else:
14
ttt.show_today()