fifth commit
[rox-ripper.git] / AppRun
blobe3b04036e5d0afd23ef3c5578b23ae585b6c2ab8
1 #!/usr/bin/env python
2 import findrox; findrox.version(1, 9, 8)
3 import rox, gtk
5 import ripper
7 try:
8 gtk.threads_init()
9 except:
10 rox.croak("Ripper needs threads support and you don't have it")
12 try:
13 theapp = ripper.Ripper()
14 theapp.show()
16 rox.mainloop()
17 except:
18 rox.report_exception()