##// END OF EJS Templates
changed main script to be compliant back to ipython script directory call
laurent.dufrechou@gmail.com -
Show More
@@ -255,11 +255,11 b' class MyApp(wx.PySimpleApp):'
255 #-----------------------------------------
255 #-----------------------------------------
256 #Main loop
256 #Main loop
257 #-----------------------------------------
257 #-----------------------------------------
258 def main(sync_ok):
258 def main():
259 app = MyApp(sync_ok)
259 app = MyApp(is_sync_frontend_ok)
260 app.SetTopWindow(app.frame)
260 app.SetTopWindow(app.frame)
261 app.MainLoop()
261 app.MainLoop()
262
262
263 #if launched as main program run this
263 #if launched as main program run this
264 if __name__ == '__main__':
264 if __name__ == '__main__':
265 main(is_sync_frontend_ok)
265 main()
General Comments 0
You need to be logged in to leave comments. Login now