themes: use the core module for io
[git-cola.git] / cola / __main__.py
blob0c337d488137198a7ad938a19d76135f6300b5ed
1 """Run cola as a Python module.
3 Usage: python -m cola
4 """
5 from __future__ import absolute_import, division, print_function, unicode_literals
7 from cola import main
10 def run():
11 """Start the command-line interface."""
12 main.main()
15 if __name__ == '__main__':
16 run()