diff options
| author | termie <code@term.ie> | 2010-12-16 12:45:06 -0800 |
|---|---|---|
| committer | termie <code@term.ie> | 2010-12-16 12:45:06 -0800 |
| commit | e306d236e3cf91c00a36940e277ad2d105b055a1 (patch) | |
| tree | 2dd1b7b62a4fd36e3a6b63125128a5baf49eb7dc | |
| parent | 9b049acc27d477a1ab9e13c9e064e59d8bd0a3ae (diff) | |
| download | nova-e306d236e3cf91c00a36940e277ad2d105b055a1.tar.gz nova-e306d236e3cf91c00a36940e277ad2d105b055a1.tar.xz nova-e306d236e3cf91c00a36940e277ad2d105b055a1.zip | |
pep8 fixes for bin
| -rwxr-xr-x | bin/nova-combined | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/nova-combined b/bin/nova-combined index 5f635b3a3..c6a04f7e9 100755 --- a/bin/nova-combined +++ b/bin/nova-combined @@ -50,7 +50,7 @@ flags.DEFINE_string('ec2api_host', '0.0.0.0', 'EC2 API host') if __name__ == '__main__': utils.default_flagfile() FLAGS(sys.argv) - + compute = service.Service.create(binary='nova-compute') network = service.Service.create(binary='nova-network') volume = service.Service.create(binary='nova-volume') @@ -63,4 +63,3 @@ if __name__ == '__main__': server.start(api.API('os'), FLAGS.osapi_port, host=FLAGS.osapi_host) server.start(api.API('ec2'), FLAGS.ec2api_port, host=FLAGS.ec2api_host) server.wait() - |
