Fix confusion in the order of parameters to buffer.insert_interactive()
[reinteract/rox.git] / bin / uninst
blob15146d1aa69545b01ce65ce02d3f0bd640253611
1 #!/usr/bin/python
3 import os
4 import sys
6 script_path = os.path.abspath(sys.argv[0])
7 topdir = os.path.dirname(os.path.dirname(script_path))
8 libdir = os.path.join(topdir, 'lib')
10 sys.path[0:0] = [libdir]
12 import reinteract
13 import reinteract.main