Third commit
[rox-ripper.git] / AppRun
blob0a4f26e018f22c52cdfa79c50b27afddac0450da
1 #!/usr/bin/env python
2 import findrox; findrox.version(1, 9, 8)
3 import rox
4 from rox import g
6 import ripper
8 try:
9 g.threads_init()
10 except:
11 rox.croak("Ripper needs threads support and you don't have it")
13 try:
14 theapp = ripper.Ripper()
15 theapp.show()
17 rox.mainloop()
18 except:
19 rox.report_exception()