fix up some text

This commit is contained in:
Jim Rollenhagen
2014-03-13 13:42:16 -07:00
parent 2fc74707cb
commit 649ed621c2

View File

@@ -1,8 +1,4 @@
# -*- encoding: utf-8 -*- # Copyright 2014 Rackspace, Inc.
#
# Copyright © 2012 New Dream Network, LLC (DreamHost)
#
# Author: Doug Hellmann <doug.hellmann@dreamhost.com>
# #
# Licensed under the Apache License, Version 2.0 (the "License"); you may # Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain # not use this file except in compliance with the License. You may obtain
@@ -62,9 +58,9 @@ class Root(base.APIBase):
@classmethod @classmethod
def convert(self): def convert(self):
root = Root() root = Root()
root.name = "OpenStack Ironic API" root.name = 'OpenStack Ironic Python Agent API'
root.description = ("Ironic is an OpenStack project which aims to " root.description = ('Ironic Python Agent is a provisioning agent for '
"provision baremetal machines.") 'OpenStack Ironic')
root.versions = [Version.convert('v1')] root.versions = [Version.convert('v1')]
root.default_version = Version.convert('v1') root.default_version = Version.convert('v1')
return root return root