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: remove references to jaraco.packaging.sphinx
[git-cola.git]
/
bin
/
git-cola
blob
211dea8a31105bb49b3ab66e250f70b39ede3a7f
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.main import main
11
12
sys.exit(main())