~robert-kern/ipython/pretty

« back to all changes in this revision

Viewing changes to IPython/kernel/scripts/ipengine.py

  • Committer: Brian Granger
  • Date: 2008-09-06 07:23:26 UTC
  • mfrom: (1109.1.23 trunk-dev)
  • Revision ID: ellisonbg@gmail.com-20080906072326-6f6eebv01jnqcm9y
This set of changes fixes numerous bugs related to Windows and
the test suite.  At this point all tests should pass or skip
on all the major platforms.  I have also fixed the Windows
post install script, so that it creates .bat and .py files
for all the ip* scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
    # register_engine to tell the controller we are ready to do work
106
106
    engine_connector = EngineConnector(tub_service)
107
107
    furl_file = kernel_config['engine']['furl_file']
 
108
    log.msg("Using furl file: %s" % furl_file)
108
109
    d = engine_connector.connect_to_controller(engine_service, furl_file)
109
110
    d.addErrback(lambda _: reactor.stop())
110
111