diff: teach the diff editor to export patches
[git-cola.git] / bin / git-cola-sequence-editor
blob55747c33b434e4a5c9a76bffa1e333a590872f31
1 #!/usr/bin/env python3
2 from __future__ import absolute_import, division, print_function, unicode_literals
3 import os
4 import sys
6 realpath = os.path.abspath(os.path.realpath(__file__))
7 sys.path.insert(1, os.path.dirname(os.path.dirname(realpath)))
10 if __name__ == '__main__':
11     from cola import sequenceeditor
13     sys.exit(sequenceeditor.main())