repo.or.cz
/
git-cola.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
diff: make the context menu more consistent when unstaging
[git-cola.git]
/
bin
/
git-dag
blob
3a5f26a30aeb19c7902a6003eef35a1d9ee9742f
1
#!/usr/bin/env python3
2
import os
3
import sys
4
5
realpath = os.path.abspath(os.path.realpath(__file__))
6
sys.path.insert(1, os.path.dirname(os.path.dirname(realpath)))
7
8
9
if __name__ == '__main__':
10
from cola import dag
11
12
sys.exit(dag.main())