<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-openstackclient.git/openstackclient/compute/v2/agent.py, branch stable/kilo</title>
<subtitle>opendev.org: openstack/python-openstackclient
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/'/>
<entry>
<title>replace string format arguments with function parameters</title>
<updated>2014-05-20T11:49:56+00:00</updated>
<author>
<name>Christian Berendt</name>
<email>berendt@b1-systems.de</email>
</author>
<published>2014-05-20T11:11:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=3b485de6b0495d1e9f6d659463a187d73a783594'/>
<id>3b485de6b0495d1e9f6d659463a187d73a783594</id>
<content type='text'>
There are files containing string format arguments inside
logging messages. Using logging function parameters should
be preferred.

Change-Id: Ic749ac9eb55564ed631d57055a5a4dfc3aebd169
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are files containing string format arguments inside
logging messages. Using logging function parameters should
be preferred.

Change-Id: Ic749ac9eb55564ed631d57055a5a4dfc3aebd169
</pre>
</div>
</content>
</entry>
<entry>
<title>In anticipation of network agents, rename compute</title>
<updated>2014-02-27T17:55:37+00:00</updated>
<author>
<name>Terry Howe</name>
<email>terrylhowe@gmail.com</email>
</author>
<published>2014-02-27T17:55:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=e9015b94f91d3ff6972109fb21a2b5e7fd3b9a79'/>
<id>e9015b94f91d3ff6972109fb21a2b5e7fd3b9a79</id>
<content type='text'>
Rename the compute agents in anticipation of network agents

Change-Id: I201121915638d89dfbe46a7e0026aa4c2777e590
Closes-Bug: #1285800
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rename the compute agents in anticipation of network agents

Change-Id: I201121915638d89dfbe46a7e0026aa4c2777e590
Closes-Bug: #1285800
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some help strings</title>
<updated>2014-02-21T18:40:41+00:00</updated>
<author>
<name>Andreas Jaeger</name>
<email>aj@suse.de</email>
</author>
<published>2014-02-21T18:22:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=50432931562ca697a2b88db2bb2f0b1da91fb28a'/>
<id>50432931562ca697a2b88db2bb2f0b1da91fb28a</id>
<content type='text'>
This fixes some errors and inconsistencies I found reviewing the
help strings:
* Capitalize help strings
* Add missing space between words (in multi-line strings)
* Improve wording

Change-Id: I2fb31ab4191c330146e31c1a9651115a6657769a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes some errors and inconsistencies I found reviewing the
help strings:
* Capitalize help strings
* Add missing space between words (in multi-line strings)
* Improve wording

Change-Id: I2fb31ab4191c330146e31c1a9651115a6657769a
</pre>
</div>
</content>
</entry>
<entry>
<title>Begin Python 3 compatability</title>
<updated>2013-07-30T00:12:29+00:00</updated>
<author>
<name>Dean Troyer</name>
<email>dtroyer@gmail.com</email>
</author>
<published>2013-07-03T23:12:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=dfb0e3e3c1b5b5563279bebfe222ed4762f79494'/>
<id>dfb0e3e3c1b5b5563279bebfe222ed4762f79494</id>
<content type='text'>
* use six.iteritems()
* replace basestring with six.string_types
* convert print statements to functions (they're all debugging and should
  be removed eventually anyway)

* clean up OpenStack copyright: LLC -&gt; Foundation

Change-Id: Icb14212bcb408e63816bfec3922a697bc1a6c946
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* use six.iteritems()
* replace basestring with six.string_types
* convert print statements to functions (they're all debugging and should
  be removed eventually anyway)

* clean up OpenStack copyright: LLC -&gt; Foundation

Change-Id: Icb14212bcb408e63816bfec3922a697bc1a6c946
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove api = apiName calls from each method</title>
<updated>2013-07-12T16:07:33+00:00</updated>
<author>
<name>Steve Martinelli</name>
<email>stevemar@ca.ibm.com</email>
</author>
<published>2013-07-12T03:40:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=1a0d5ccc68f65394292992b48afe20241e89e7b8'/>
<id>1a0d5ccc68f65394292992b48afe20241e89e7b8</id>
<content type='text'>
As discussed in https://review.openstack.org/#/c/36352/ for each
command, we were setting api = identity or volume... etc,
this was for an old way of calling commands that are is no longer
used.

Also removed openstackclient/common/command.py

Change-Id: I2705f35d343f2ae729dc22d6aed0b852b2f8ca19
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As discussed in https://review.openstack.org/#/c/36352/ for each
command, we were setting api = identity or volume... etc,
this was for an old way of calling commands that are is no longer
used.

Also removed openstackclient/common/command.py

Change-Id: I2705f35d343f2ae729dc22d6aed0b852b2f8ca19
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed unused imports.</title>
<updated>2013-03-15T16:10:46+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-03-15T16:10:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=f54012cf8ea196eef2a68d0b5faa4684c48efe45'/>
<id>f54012cf8ea196eef2a68d0b5faa4684c48efe45</id>
<content type='text'>
Change-Id: Ib1bae16f996559c008fb1fe0b74f26b152854ea8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ib1bae16f996559c008fb1fe0b74f26b152854ea8
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove underscore.</title>
<updated>2013-02-25T17:57:28+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-02-25T17:57:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=87375392a8fd4e6583734be5e5a31801ffa4016d'/>
<id>87375392a8fd4e6583734be5e5a31801ffa4016d</id>
<content type='text'>
Change-Id: Iaf2791b96e81d6a0d4846adb3128e4dff61faf30
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Iaf2791b96e81d6a0d4846adb3128e4dff61faf30
</pre>
</div>
</content>
</entry>
<entry>
<title>Added compute agent support.</title>
<updated>2013-02-20T16:13:38+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-02-19T18:38:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=ac8b4ce4ac03ef884fde4fed5be00e3f5b42df8e'/>
<id>ac8b4ce4ac03ef884fde4fed5be00e3f5b42df8e</id>
<content type='text'>
Change-Id: I818a2ea51a773f50da385cbdd71771a4ac923bd7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I818a2ea51a773f50da385cbdd71771a4ac923bd7
</pre>
</div>
</content>
</entry>
</feed>
