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
docs: disable rst.linker for Python 3.11
[git-cola.git]
/
bin
/
git-dag
blob
a4541b25c6659848e67bd7cd9323059be230181b
1
#!/usr/bin/env python3
2
from __future__ import absolute_import, division, print_function, unicode_literals
3
import os
4
import sys
5
6
realpath = os.path.abspath(os.path.realpath(__file__))
7
sys.path.insert(1, os.path.dirname(os.path.dirname(realpath)))
8
9
10
if __name__ == '__main__':
11
from cola import dag
12
13
sys.exit(dag.main())