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
log: set the focus proxy to the output text
[git-cola.git]
/
cola
/
__main__.py
blob
0d7737cff374ad0d50b67d4c9ac1de1d36b3ce4c
1
"""Run cola as a Python module.
2
3
Usage: python -m cola
4
"""
5
6
from
cola
import
main
7
8
9
def
run
():
10
"""Start the command-line interface."""
11
main
.
main
()
12
13
14
if
__name__
==
'__main__'
:
15
run
()