~frankban/juju-gui/quickstart-initial

« back to all changes in this revision

Viewing changes to juju-quickstart

  • Committer: Francesco Banconi
  • Date: 2013-10-14 15:24:29 UTC
  • Revision ID: francesco.banconi@canonical.com-20131014152429-9v1tkogs189u1jc7
Remove tornado.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
"""Juju Quickstart plugin entry point."""
20
20
 
21
 
from tornado.ioloop import IOLoop
22
 
 
23
21
from quickstart import manage
24
22
 
25
23
 
26
24
if __name__ == '__main__':
27
25
    options = manage.setup()
28
26
    manage.run(options)
29
 
    IOLoop.instance().start()