doc: Document the cola.qt module
[git-cola.git] / cola / difftool.py
blob1dfccf007d50cc42c1faf1d95a406956c4fb8b95
1 from cola import utils
3 def launch(args):
4 """Launches 'git difftool' with args"""
5 difftool_args = ['git', 'difftool', '--no-prompt']
6 difftool_args.extend(args)
7 utils.fork(difftool_args)